mirror of https://github.com/zachjs/sv2v.git
6 lines
96 B
Verilog
6 lines
96 B
Verilog
|
|
module top;
|
||
|
|
localparam P_X = 10;
|
||
|
|
localparam Y = P_X;
|
||
|
|
initial $display(Y);
|
||
|
|
endmodule
|