This website requires JavaScript.
Explore
Help
Sign In
luke
/
yosys
Watch
1
Star
0
Fork
0
mirror of
https://github.com/YosysHQ/yosys.git
synced
2026-09-02 11:07:41 +02:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
cb8f855f347da751d65eb002f80247d107b25e96
yosys
/
docs
/
source
/
code_examples
/
techmap
/
red_or3x1_cells.v
T
6 lines
95 B
Verilog
Raw
Normal View
History
Unescape
Escape
Progress in presentation
2014-02-16 13:45:47 +01:00
module
OR3X1
(
A
,
B
,
C
,
Y
);
input
A
,
B
,
C
;
output
Y
;
assign
Y
=
A
|
B
|
C
;
endmodule
Reference in New Issue
Copy Permalink