blob: 34c4ca7b609d6fcb052220b96cd210555a1fb64f [file] [log] [blame]
module top(C, O, A, B);
input [3:0] A;
input [3:0] B;
output [3:0] O;
output C;
assign {C, O} = A + B;
endmodule