aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/ice40/cells_map.v
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-12-12 14:57:17 -0800
committerEddie Hung <eddie@fpgeh.com>2019-12-12 14:57:17 -0800
commitbea15b537b4b988f24385338c5f25c2b37b66353 (patch)
tree49f2d197bf57ada5d4b3638147ebfcc639a3f603 /techlibs/ice40/cells_map.v
parent3eed8835b5911c4c635e0cade0978987c09c7ab5 (diff)
parent9ab1feeaf11adb6b675ac4034e246cb137d07db9 (diff)
downloadyosys-bea15b537b4b988f24385338c5f25c2b37b66353.tar.gz
yosys-bea15b537b4b988f24385338c5f25c2b37b66353.tar.bz2
yosys-bea15b537b4b988f24385338c5f25c2b37b66353.zip
Merge remote-tracking branch 'origin/master' into xaig_dff
Diffstat (limited to 'techlibs/ice40/cells_map.v')
-rw-r--r--techlibs/ice40/cells_map.v19
1 files changed, 0 insertions, 19 deletions
diff --git a/techlibs/ice40/cells_map.v b/techlibs/ice40/cells_map.v
index 662423f0a..759549e30 100644
--- a/techlibs/ice40/cells_map.v
+++ b/techlibs/ice40/cells_map.v
@@ -61,22 +61,3 @@ module \$lut (A, Y);
endgenerate
endmodule
`endif
-
-`ifndef NO_ADDER
-module \$__ICE40_CARRY_WRAPPER (output CO, O, input A, B, CI, I0, I3);
- parameter LUT = 0;
- SB_CARRY carry (
- .I0(A),
- .I1(B),
- .CI(CI),
- .CO(CO)
- );
- \$lut #(
- .WIDTH(4),
- .LUT(LUT)
- ) lut (
- .A({I0,A,B,I3}),
- .Y(O)
- );
-endmodule
-`endif