Files
iverilog/ivtest/ivltests/scope4.v
T
Stephen Williams cea237b407 Add ivtest to the iverilog source tree
By adding ivtest to the iverilog source tree, it is easier to keep
the regression test synchronized with the source that is being tested.
This should be especially helpful for PRs that add a new feature, and
have a matching ivtest PR with the regression test for that feature.
2022-01-15 10:18:50 -08:00

24 lines
328 B
Verilog

module test4;
reg r;
endmodule
module test3;
test4 test4();
endmodule
module test2;
initial begin
$dumpvars(1, test3.test4);
end
test3 test3();
endmodule
module test;
initial begin
$dumpfile("work/dumpfile.vcd");
$dumpvars(1, test2.test3);
$display("PASSED");
end
test2 test2();
endmodule