Sign in
foss-fpga-tools
/
third_party
/
yosys
/
f5804a84fd6d9b7d4d50529fcb5c46e3dde89086
/
.
/
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