blob: 42aae8663e9139e2f4d264e13a1906548633dc07 [file] [log] [blame]
module top (input a, b, ci, output co);
SB_CARRY carry_cell (
.I0(a),
.I1(b),
.CI(ci),
.CO(co)
);
endmodule