3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-09 20:50:51 +00:00

Progress on AppNote 011

This commit is contained in:
Clifford Wolf 2013-11-28 23:09:03 +01:00
parent d90ef1e143
commit f89ecbc100
4 changed files with 144 additions and 59 deletions

View file

@ -0,0 +1,3 @@
module cmos_demo(input a, b, output [1:0] y);
assign y = a + b;
endmodule