mirror of
https://github.com/pevans/erc-c.git
synced 2026-04-21 15:16:45 +00:00
Carry must be unset in this test
This commit is contained in:
@@ -52,6 +52,7 @@ Test(mos6502_addr, addr_mode_aby_carry0)
|
||||
SET_PC_BYTE(cpu, 1, 0x30);
|
||||
SET_PC_BYTE(cpu, 2, 0x12);
|
||||
cpu->Y = 4;
|
||||
cpu->P = cpu->P & ~MOS_CARRY;
|
||||
cr_assert_eq(mos6502_resolve_aby(cpu), 111);
|
||||
}
|
||||
|
||||
@@ -61,7 +62,6 @@ Test(mos6502_addr, addr_mode_aby_carry1)
|
||||
SET_PC_BYTE(cpu, 1, 0x30);
|
||||
SET_PC_BYTE(cpu, 2, 0x12);
|
||||
cpu->Y = 3;
|
||||
cpu->P = cpu->P | MOS_CARRY;
|
||||
cr_assert_eq(mos6502_resolve_aby(cpu), 111);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user