aboutsummaryrefslogtreecommitdiffstats
path: root/manual/APPNOTE_011_Design_Investigation/cmos.v
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-11-28 23:09:03 +0100
committerClifford Wolf <clifford@clifford.at>2013-11-28 23:09:03 +0100
commitf89ecbc10002b4749099f189d60bc591fefe9467 (patch)
tree79fcf18e0672bda855396bcbfba162657ba25b8a /manual/APPNOTE_011_Design_Investigation/cmos.v
parentd90ef1e143f5c0e7ac72f9eccd849e3a96ac3e96 (diff)
downloadyosys-f89ecbc10002b4749099f189d60bc591fefe9467.tar.gz
yosys-f89ecbc10002b4749099f189d60bc591fefe9467.tar.bz2
yosys-f89ecbc10002b4749099f189d60bc591fefe9467.zip
Progress on AppNote 011
Diffstat (limited to 'manual/APPNOTE_011_Design_Investigation/cmos.v')
-rw-r--r--manual/APPNOTE_011_Design_Investigation/cmos.v3
1 files changed, 3 insertions, 0 deletions
diff --git a/manual/APPNOTE_011_Design_Investigation/cmos.v b/manual/APPNOTE_011_Design_Investigation/cmos.v
new file mode 100644
index 000000000..2912c760a
--- /dev/null
+++ b/manual/APPNOTE_011_Design_Investigation/cmos.v
@@ -0,0 +1,3 @@
+module cmos_demo(input a, b, output [1:0] y);
+assign y = a + b;
+endmodule