blob: 2912c760a7a27225cad7686b3487f972b98506af [file] [log] [blame]
module cmos_demo(input a, b, output [1:0] y);
assign y = a + b;
endmodule