aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/ice40/abc.v
diff options
context:
space:
mode:
Diffstat (limited to 'techlibs/ice40/abc.v')
-rw-r--r--techlibs/ice40/abc.v12
1 files changed, 0 insertions, 12 deletions
diff --git a/techlibs/ice40/abc.v b/techlibs/ice40/abc.v
deleted file mode 100644
index e2a54a42c..000000000
--- a/techlibs/ice40/abc.v
+++ /dev/null
@@ -1,12 +0,0 @@
-(* abc_box_id = 1 *)
-module SB_CARRY (output CO, input CI, I0, I1);
- assign CO = (I0 && I1) || ((I0 || I1) && CI);
-endmodule
-
-(* abc_box_id = 2 *)
-module SB_LUT4 (output O, input I0, I1, I2, I3);
- parameter [15:0] LUT_INIT = 0;
- // Indicate this is a black-box
- assign O = 1'b0;
-endmodule
-