Sign in
foss-fpga-tools
/
third_party
/
yosys
/
de3476cc233c1c78d3e956aa7e9bd1003ac37f66
/
.
/
tests
/
simple
/
param_attr.v
blob: 34d63a34e01910d702cbc0b72c11d1e24b34185f [
file
]
module
uut_param_attr
(
I
,
O
);
(*
PARAMETER_ATTRIBUTE
=
"attribute_content"
*)
parameter WIDTH
=
1
;
input wire
[
WIDTH
-
1
:
0
]
I
;
output wire
[
WIDTH
-
1
:
0
]
O
;
assign O
=
I
;
endmodule