Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
3f4e38faba84ce292e5f05601b70dd598f686411
/
.
/
SVIncCompil
/
Testcases
/
YosysTestSuite
/
simple
/
param_attr.v
blob: 34d63a34e01910d702cbc0b72c11d1e24b34185f [
file
] [
log
] [
blame
]
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