1
0
mirror of https://github.com/pevans/erc-c.git synced 2025-02-17 07:32:05 +00:00

The boot procedure no longer defaults bank_switch to 0

This commit is contained in:
Peter Evans 2018-01-10 21:50:43 -06:00
parent 81b07361fb
commit 288b4a9e8d

View File

@ -119,6 +119,7 @@ Test(apple2, set_video)
Test(apple2, set_bank_switch)
{
apple2_set_bank_switch(mach, 0);
cr_assert_eq(mach->bank_switch, 0);
apple2_set_bank_switch(mach, MEMORY_ROM | MEMORY_WRITE | MEMORY_RAM2);
cr_assert_eq(mach->bank_switch, MEMORY_ROM | MEMORY_WRITE | MEMORY_RAM2);