From 76e4d3797fa9eb1295c875c3448f7f9fefd55d6c Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Fri, 26 Jan 2018 22:01:46 -0600 Subject: [PATCH] By default SLOTCXROM should be high --- src/apple2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apple2.c b/src/apple2.c index 586aa69..2dd8edc 100644 --- a/src/apple2.c +++ b/src/apple2.c @@ -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) {