Sign in
foss-fpga-tools
/
third_party
/
yosys
/
03457ee13e36574add688a9c2c5c0641a4d6df05
/
.
/
tests
/
simple
/
arraycells.v
blob: fd85a1195d834900f16bcabee250af6a739c695f [
file
]
module
array_test001
(
a
,
b
,
c
,
y
);
input a
;
input
[
31
:
0
]
b
,
c
;
output
[
31
:
0
]
y
;
aoi12 p
[
31
:
0
]
(
a
,
b
,
c
,
y
);
endmodule
module
aoi12
(
a
,
b
,
c
,
y
);
input a
,
b
,
c
;
output y
;
assign y
=
~((
a
&
b
)
|
c
);
endmodule