1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-28 16:29:30 +00:00

By default SLOTCXROM should be high

This commit is contained in:
Peter Evans 2018-01-26 22:01:46 -06:00
parent ca5276cb6b
commit 76e4d3797f

View File

@ -63,7 +63,7 @@ apple2_create(int width, int height)
// assumes that the bank_switch variable has been initialized
// before, which to this point, it hasn't!
mach->bank_switch = BANK_DEFAULT;
mach->memory_mode = MEMORY_DEFAULT;
mach->memory_mode = MEMORY_DEFAULT | MEMORY_SLOTCXROM;
mach->main = vm_segment_create(APPLE2_MEMORY_SIZE);
if (mach->main == NULL) {