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