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

25 lines
368 B
Verilog

/*
* See pr245 in the ivtest test suite.
*/
`timescale 1ns/1ns
module t;
wire [11:0] iodata;
integer i;
initial
begin
$timeformat(-9,0,"ns",7);
$display(" TIME:IOD");
$monitor( "%t:%3x",
$time,iodata);
#0
force iodata =0;
for (i=0; i<512;i=i+1)
#10
force iodata =i;
end // initial begin
endmodule // t