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