This website requires JavaScript.
Explore
Help
Sign In
riscv
/
yosys
mirror of
https://github.com/YosysHQ/yosys.git
Watch
1
Star
0
Fork
You've already forked yosys
0
Code
Issues
Projects
Releases
Wiki
Activity
16c4182c74
yosys
/
manual
/
PRESENTATION_ExAdv
/
red_or3x1_cells.v
6 lines
95 B
Verilog
Raw
Blame
History
module
OR3X1
(
A
,
B
,
C
,
Y
)
;
input
A
,
B
,
C
;
output
Y
;
assign
Y
=
A
|
B
|
C
;
endmodule
Reference in New Issue
View Git Blame
Copy Permalink