aboutsummaryrefslogtreecommitdiff
path: root/sim/common/sim-alu.h
diff options
context:
space:
mode:
Diffstat (limited to 'sim/common/sim-alu.h')
-rw-r--r--sim/common/sim-alu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/common/sim-alu.h b/sim/common/sim-alu.h
index becc224..b851bea 100644
--- a/sim/common/sim-alu.h
+++ b/sim/common/sim-alu.h
@@ -1007,14 +1007,14 @@ do { \
#define ALU32_AND(VAL) \
do { \
alu32_r &= (VAL); \
- alu32_r = 0; \
+ alu32_c = 0; \
alu32_v = 0; \
} while (0)
#define ALU64_AND(VAL) \
do { \
alu64_r &= (VAL); \
- alu64_r = 0; \
+ alu64_c = 0; \
alu64_v = 0; \
} while (0)