1
0
mirror of https://github.com/pevans/erc-c.git synced 2025-04-05 06:37:42 +00:00

pha/php only push one byte onto the stack

This commit is contained in:
Peter Evans 2018-01-23 21:37:36 -06:00
parent c946eb3f69
commit 47630fdc88

View File

@ -29,8 +29,7 @@ Test(mos6502_loadstor, pha)
cpu->A = 0x24;
mos6502_handle_pha(cpu, 0);
cr_assert_eq(mos6502_get(cpu, 0x0100), 0x24);
cr_assert_eq(mos6502_get(cpu, 0x0101), 0x00);
cr_assert_eq(mos6502_get(cpu, 0x01ff), 0x24);
}
Test(mos6502_loadstor, php)
@ -38,8 +37,7 @@ Test(mos6502_loadstor, php)
cpu->P = 0x43;
mos6502_handle_php(cpu, 0);
cr_assert_eq(mos6502_get(cpu, 0x0100), 0x43);
cr_assert_eq(mos6502_get(cpu, 0x0101), 0x00);
cr_assert_eq(mos6502_get(cpu, 0x01ff), 0x43);
}
Test(mos6502_loadstor, pla)