Use ID() in kernel/*, add simple ID:: hack (to be improved upon later)
[yosys.git] / manual / APPNOTE_011_Design_Investigation / cmos.v
1 module cmos_demo(input a, b, output [1:0] y);
2 assign y = a + b;
3 endmodule