1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-11-23 23:32:45 +00:00

Also force bank switch mode back to ROM

This commit is contained in:
Peter Evans 2018-01-10 15:16:12 -06:00
parent c9188a288d
commit 6af0ae85a4

View File

@ -216,7 +216,11 @@ apple2_reset(apple2 *mach)
mach->cpu->PC = vm_segment_get16(mach->memory, 0xFFFC);
mach->cpu->S = 0;
// Switch video mode back to 40 column text
apple2_set_video(VIDEO_40COL_TEXT);
// Default to read from ROM
apple2_set_memory(MEMORY_BANK_ROM);
}
/*