Fixes #84 - Unexpected write at $C000

This commit is contained in:
Stefan Arentz 2017-10-15 22:21:56 -04:00
parent ccfa250823
commit 71bbe91ac3
1 changed files with 3 additions and 0 deletions

View File

@ -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;