From 71bbe91ac306b01528923eeff16c9564ade7420a Mon Sep 17 00:00:00 2001 From: Stefan Arentz Date: Sun, 15 Oct 2017 22:21:56 -0400 Subject: [PATCH] Fixes #84 - Unexpected write at $C000 --- src/two.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/two.c b/src/two.c index 9471db0..59d2f30 100644 --- a/src/two.c +++ b/src/two.c @@ -193,6 +193,9 @@ static void ewm_two_iom_write(struct cpu_t *cpu, struct mem_t *mem, uint16_t add struct ewm_two_t *two = (struct ewm_two_t*) mem->obj; //printf("ewm_two_iom_write(%x)\n", addr); switch (addr) { + case EWM_A2P_SS_KBD: + // Ignore - This is CLR80STORE on the IIe + break; case EWM_A2P_SS_KBDSTRB: two->key &= 0x7f;