Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
d4bc91e228686cd8ec9eee019b4f0db9b7bc26cb
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
z2.v
blob: 7d0ae17f947730013ed80cc8b6a52e11b40d3246 [
file
] [
log
] [
blame
]
module
baz
;
parameter Q
=
10
;
endmodule
module
bar
;
parameter P
=
1
;
baz
#(P+1) baz1();
endmodule
module
foo
;
bar
#3 bar1();
initial
$display
(
"PASSED"
);
endmodule