mirror of
https://github.com/verilator/verilator.git
synced 2025-02-08 06:32:24 +00:00
20 lines
411 B
Systemverilog
20 lines
411 B
Systemverilog
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
// without warranty, 2018 by Alex Solomatnikov
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
module t;
|
|
sub #(.REAL(2.0)) sub();
|
|
endmodule
|
|
|
|
module sub ();
|
|
parameter REAL = 0.0;
|
|
|
|
initial begin
|
|
$display("REAL %g", REAL);
|
|
$write("*-* All Finished *-*\n");
|
|
$finish;
|
|
end
|
|
endmodule
|