mirror of https://github.com/zachjs/sv2v.git
8 lines
101 B
Systemverilog
8 lines
101 B
Systemverilog
|
|
module top;
|
||
|
|
integer x = 0;
|
||
|
|
initial begin
|
||
|
|
x++;
|
||
|
|
$display(x);
|
||
|
|
end
|
||
|
|
endmodule
|