3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-19 01:32:20 +00:00

Add ice40 box files

This commit is contained in:
Eddie Hung 2019-04-16 16:39:30 -07:00
parent ae2653c50f
commit 7980118d74
6 changed files with 27 additions and 1 deletions

View file

@ -0,0 +1,5 @@
(* abc_box_id = 1 *)
module SB_CARRY (output CO, input CI, I0, I1);
assign CO = (I0 && I1) || ((I0 || I1) && CI);
endmodule