mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 01:18:10 +02:00
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
|