Sign in
foss-fpga-tools
/
third_party
/
yosys
/
9204c444650ff1ca39ef206cf4a61545294f7549
/
.
/
manual
/
PRESENTATION_ExAdv
/
red_or3x1_cells.v
blob: 0750a130794016e704bb8a56327b18f6e161bf3b [
file
] [
log
] [
blame
]
module
OR3X1
(
A
,
B
,
C
,
Y
);
input A
,
B
,
C
;
output Y
;
assign Y
=
A
|
B
|
C
;
endmodule