mirror of https://github.com/zachjs/sv2v.git
12 lines
238 B
Systemverilog
12 lines
238 B
Systemverilog
|
|
module top;
|
||
|
|
integer x = 0;
|
||
|
|
initial
|
||
|
|
do begin
|
||
|
|
$display("hi %0d", x);
|
||
|
|
x++;
|
||
|
|
if (x == 2)
|
||
|
|
continue;
|
||
|
|
$display("step");
|
||
|
|
end while (0 < x && x < 3);
|
||
|
|
endmodule
|