Files
iverilog/ivtest/ivltests/pr913.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

20 lines
344 B
Verilog

/*
* This test is based on PR#913 in the test suite. The
* idea is to wait for the start integer to become true.
*/
module test();
integer start;
initial
#900000 begin $display("FAILED"); $stop; end
initial
#100000 start = 1;
initial
begin
wait (start) $display("PASSED");
$finish;
end
endmodule // test