mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 01:18:10 +02:00
22 lines
321 B
Systemverilog
22 lines
321 B
Systemverilog
module top;
|
|
integer x = 0;
|
|
initial begin
|
|
x++;
|
|
$display(x);
|
|
end
|
|
initial begin
|
|
++x;
|
|
$display(x);
|
|
end
|
|
initial begin
|
|
repeat (0);
|
|
x++;
|
|
$display(x);
|
|
end
|
|
initial begin
|
|
repeat (0);
|
|
++x;
|
|
$display(x);
|
|
end
|
|
endmodule
|