1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-07-19 00:28:54 +00:00

Require STATUS_DEFAULT, stack pointer at ff

This commit is contained in:
Peter Evans 2018-01-23 16:07:21 -06:00
parent 766aea9c96
commit ef13fe4ef1

View File

@ -100,8 +100,8 @@ Test(apple2, reset)
apple2_reset(mach);
cr_assert_eq(mach->cpu->PC, 0x1234);
cr_assert_eq(mach->cpu->P, MOS_INTERRUPT);
cr_assert_eq(mach->cpu->S, 0);
cr_assert_eq(mach->cpu->P, MOS_STATUS_DEFAULT);
cr_assert_eq(mach->cpu->S, 0xff);
}
Test(apple2, set_memory_mode)