mirror of https://github.com/zachjs/sv2v.git
7 lines
115 B
Coq
7 lines
115 B
Coq
|
|
module top;
|
||
|
|
localparam BW = 3;
|
||
|
|
wire [2:0] test;
|
||
|
|
assign test = 0;
|
||
|
|
initial $display(test);
|
||
|
|
endmodule
|