mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 17:31:40 +02:00
11 lines
203 B
Verilog
11 lines
203 B
Verilog
module top;
|
|
integer x = 0;
|
|
initial
|
|
while (x < 3) begin
|
|
$display("hi %0d", x);
|
|
x++;
|
|
if (x != 2)
|
|
$display("step");
|
|
end
|
|
endmodule
|