1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2026-04-24 18:16:57 +00:00

Fix carry flag setting in comparison instructions. Resolve #2.

This commit is contained in:
Radosław Kujawa
2017-02-15 21:58:42 +01:00
parent de1ab25427
commit cc61646ba9
+6 -6
View File
@@ -397,9 +397,9 @@ emul_cmp(rk65c02emu_t *e, void *id, instruction_t *i)
instruction_status_adjust_negative(e, sr);
if (e->regs.A < val)
e->regs.P |= P_CARRY;
else
e->regs.P &= ~P_CARRY;
else
e->regs.P |= P_CARRY;
}
/* CPX - compare X and memory location */
@@ -415,9 +415,9 @@ emul_cpx(rk65c02emu_t *e, void *id, instruction_t *i)
instruction_status_adjust_negative(e, sr);
if (e->regs.X < val)
e->regs.P |= P_CARRY;
else
e->regs.P &= ~P_CARRY;
else
e->regs.P |= P_CARRY;
}
/* CPY - compare Y and memory location */
@@ -433,9 +433,9 @@ emul_cpy(rk65c02emu_t *e, void *id, instruction_t *i)
instruction_status_adjust_negative(e, sr);
if (e->regs.Y < val)
e->regs.P |= P_CARRY;
else
e->regs.P &= ~P_CARRY;
else
e->regs.P |= P_CARRY;
}
/* DEC - decrement memory location/acumulator */