Sign in
foss-fpga-tools
/
third_party
/
yosys
/
51e4e29bb1f7c030b0cac351c522dc41f7587be2
/
.
/
manual
/
APPNOTE_011_Design_Investigation
/
cmos.v
blob: 2912c760a7a27225cad7686b3487f972b98506af [
file
]
module
cmos_demo
(
input a
,
b
,
output
[
1
:
0
]
y
);
assign y
=
a
+
b
;
endmodule