mirror of https://github.com/zachjs/sv2v.git
6 lines
103 B
Verilog
6 lines
103 B
Verilog
|
|
module top;
|
||
|
|
localparam Foo = 1;
|
||
|
|
localparam Bar = 2;
|
||
|
|
initial $display(Foo + Bar);
|
||
|
|
endmodule
|