comparison gdb_remote.c @ 1773:0a26f3657295 mame_interp

Remove MAME Z80 core in favor of my new Z80 core
author Michael Pavone <pavone@retrodev.com>
date Tue, 12 Mar 2019 21:59:52 -0700
parents 8fe162bdb038
children 49f65d240299
comparison
equal deleted inserted replaced
1772:75172d440900 1773:0a26f3657295
168 return; 168 return;
169 } 169 }
170 if (address >= 0xA00000 && address < 0xA04000) { 170 if (address >= 0xA00000 && address < 0xA04000) {
171 gen->zram[address & 0x1FFF] = value; 171 gen->zram[address & 0x1FFF] = value;
172 genesis_context * gen = context->system; 172 genesis_context * gen = context->system;
173 #if !defined(NO_Z80) && !defined(NEW_CORE) 173 #if !defined(NO_Z80) && defined(USE_NATIVE)
174 z80_handle_code_write(address & 0x1FFF, gen->z80); 174 z80_handle_code_write(address & 0x1FFF, gen->z80);
175 #endif 175 #endif
176 return; 176 return;
177 } else { 177 } else {
178 return; 178 return;