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