index
:
iCE40/yosys
master
[no description]
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
manual
/
APPNOTE_011_Design_Investigation
/
cmos.v
blob: 2912c760a7a27225cad7686b3487f972b98506af (
plain
)
1
2
3
module
cmos_demo
(
input
a
,
b
,
output
[
1
:
0
]
y
);
assign
y
=
a
+
b
;
endmodule