mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 01:18:10 +02:00
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
|