Add ice40 box files
[yosys.git] / techlibs / ice40 / cells_box.v
1 (* abc_box_id = 1 *)
2 module SB_CARRY (output CO, input CI, I0, I1);
3 assign CO = (I0 && I1) || ((I0 || I1) && CI);
4 endmodule
5