summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/z8000/z8000.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/z8000/z8000.c')
-rw-r--r--src/emu/cpu/z8000/z8000.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/emu/cpu/z8000/z8000.c b/src/emu/cpu/z8000/z8000.c
index dbc3448a973..bcfb1ca74a3 100644
--- a/src/emu/cpu/z8000/z8000.c
+++ b/src/emu/cpu/z8000/z8000.c
@@ -483,7 +483,7 @@ static int z8000_execute(int cycles)
if (IRQ_REQ)
Interrupt();
- CALL_DEBUGGER(PC);
+ debugger_instruction_hook(Machine, PC);
if (IRQ_REQ & Z8000_HALT)
{
@@ -692,9 +692,7 @@ void z8000_get_info(UINT32 state, cpuinfo *info)
case CPUINFO_PTR_EXIT: info->exit = z8000_exit; break;
case CPUINFO_PTR_EXECUTE: info->execute = z8000_execute; break;
case CPUINFO_PTR_BURN: info->burn = NULL; break;
-#ifdef ENABLE_DEBUGGER
case CPUINFO_PTR_DISASSEMBLE: info->disassemble = z8000_dasm; break;
-#endif /* ENABLE_DEBUGGER */
case CPUINFO_PTR_INSTRUCTION_COUNTER: info->icount = &z8000_ICount; break;
/* --- the following bits of info are returned as NULL-terminated strings --- */