mirror of https://github.com/zachjs/sv2v.git
10 lines
154 B
Verilog
10 lines
154 B
Verilog
|
|
module top;
|
||
|
|
parameter WIDTH = 5;
|
||
|
|
reg [WIDTH-1:0] x, y;
|
||
|
|
if (WIDTH > 0)
|
||
|
|
initial
|
||
|
|
x = 0;
|
||
|
|
initial
|
||
|
|
y = 0;
|
||
|
|
endmodule
|