aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/nexus
diff options
context:
space:
mode:
Diffstat (limited to 'techlibs/nexus')
-rw-r--r--techlibs/nexus/arith_map.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/nexus/arith_map.v b/techlibs/nexus/arith_map.v
index fd9d61be3..ce14a15ea 100644
--- a/techlibs/nexus/arith_map.v
+++ b/techlibs/nexus/arith_map.v
@@ -88,9 +88,9 @@ module _80_nexus_alu (A, B, CI, BI, X, Y, CO);
.COUT(FCO[i+2])
);
- assign CO[i] = (AA[i] && BB[i]) || (((i == 0) ? CI : CO[i-1]) && (AA[i] || BB[i]));
+ assign CO[i] = (AA[i] && BB[i]) || ((Y[i] ^ AA[i] ^ BB[i]) && (AA[i] || BB[i]));
if (i+1 < Y_WIDTH) begin
- assign CO[i+1] = (AA[i+1] && BB[i+1]) || (CO[i] && (AA[i+1] || BB[i+1]));
+ assign CO[i + 1] = (AA[i] && BB[i]) || ((Y[i] ^ AA[i] ^ BB[i]) && (AA[i] || BB[i]));
assign Y[i+1] = Y1[i];
end
end endgenerate