Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
Zachjs
/
resolve
/
module.sv
blob: 55d87a84dccda04a5f51ec2e12c20627a11904a6 [
file
] [
log
] [
blame
]
module
top
import
pkg
::*;
#(localparam width = width_calc(2))
(
input
[
width
-
1
:
0
]
i
,
output
[
width
-
1
:
0
]
o
);
assign o
=
i
+
1
'b1;
initial begin
$display(width);
$display(`FANCY_SEEING_YOU);
end
endmodule