diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-11-28 23:09:03 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-11-28 23:09:03 +0100 |
commit | f89ecbc10002b4749099f189d60bc591fefe9467 (patch) | |
tree | 79fcf18e0672bda855396bcbfba162657ba25b8a /manual/APPNOTE_011_Design_Investigation/cmos.v | |
parent | d90ef1e143f5c0e7ac72f9eccd849e3a96ac3e96 (diff) | |
download | yosys-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.v | 3 |
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 |