mirror of https://github.com/zachjs/sv2v.git
7 lines
141 B
Verilog
7 lines
141 B
Verilog
|
|
module Example;
|
||
|
|
localparam X = 1;
|
||
|
|
localparam Y = 2;
|
||
|
|
parameter Z = X * 7;
|
||
|
|
initial $display("%0d %0d %0d", X, Y, Z);
|
||
|
|
endmodule
|