2021-05-28 20:27:14 -04:00
|
|
|
module other;
|
|
|
|
|
parameter STR = "missing";
|
|
|
|
|
initial $display("other: STR=%s $bits(STR)=%0d", STR, $bits(STR));
|
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
|
|
module mod;
|
|
|
|
|
parameter STR = "missing";
|
|
|
|
|
initial $display("mod: STR=%s", STR);
|
|
|
|
|
other #("HI") m();
|
|
|
|
|
endmodule
|