mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 01:18:10 +02:00
7 lines
177 B
Verilog
7 lines
177 B
Verilog
module Example(inp);
|
|
localparam W = 5;
|
|
localparam unrelated = 1;
|
|
input wire [W - 1:0] inp;
|
|
initial $display("%b %0d %0d", inp, $bits(inp), unrelated);
|
|
endmodule
|