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

The stack pushes from the end of the page now

This commit is contained in:
Peter Evans 2018-01-23 16:21:43 -06:00
parent 8edf83f7ad
commit a3598ecd16

View File

@ -26,7 +26,7 @@ Test(mos6502, create)
Test(mos6502, push_stack)
{
mos6502_push_stack(cpu, 0x34);
cr_assert_eq(mos6502_get(cpu, 0x0100), 0x34);
cr_assert_eq(mos6502_get(cpu, 0x01ff), 0x34);
}
Test(mos6502, pop_stack)