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