Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
2b38692156ff2742b1c4c94d3b93df97f2145e0c
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_01259
/
top.v
blob: 0213eefd0ca06cac9ae27e63e260442677a82f78 [
file
]
module
top
();
parameter W
=
10
;
wire
[
W
-
1
:
0
]
x
;
empty
#(.W(W)) empty_inst(.x(x));
endmodule
module
empty
#(parameter W = 0)(output wire [W-1:0] x);
endmodule