Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
refs/heads/mithro-patch-1
/
.
/
SVIncCompil
/
Testcases
/
Zachjs
/
resolve
/
module.sv
blob: 55d87a84dccda04a5f51ec2e12c20627a11904a6 [
file
] [
log
] [
blame
] [
edit
]
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