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 02:57:40 +02:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
793594bd5973d2f48100aaec7c67c93d439d9956
yosys
/
docs
/
source
/
code_examples
/
show
/
cmos.v
T
4 lines
74 B
Verilog
Raw
Normal View
History
Unescape
Escape
Remove docs dependency on yosys repo (
#3558
)
2022-11-25 03:56:44 +13:00
module
cmos_demo
(
input
a
,
b
,
output
[
1
:
0
]
y
);
assign
y
=
a
+
b
;
endmodule
Reference in New Issue
Copy Permalink