aboutsummaryrefslogtreecommitdiffstats
path: root/tests/opt/ice40_carry.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/opt/ice40_carry.v')
-rw-r--r--tests/opt/ice40_carry.v3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/opt/ice40_carry.v b/tests/opt/ice40_carry.v
deleted file mode 100644
index ed938932a..000000000
--- a/tests/opt/ice40_carry.v
+++ /dev/null
@@ -1,3 +0,0 @@
-module SB_CARRY (output CO, input I0, I1, CI);
- assign CO = (I0 && I1) || ((I0 || I1) && CI);
-endmodule