mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
12 lines
305 B
Systemverilog
12 lines
305 B
Systemverilog
module top;
|
|
parameter CONST = 1;
|
|
localparam WIDTH = CONST * 2;
|
|
localparam VALUE = WIDTH'(1'sb1);
|
|
initial $display("%b", VALUE);
|
|
if (1) begin : blk2
|
|
localparam WIDTH = CONST * 3;
|
|
localparam VALUE = WIDTH'(1'sb1);
|
|
initial $display("%b", VALUE);
|
|
end
|
|
endmodule
|