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