summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/m6805/m6805.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/m6805/m6805.c')
-rw-r--r--src/emu/cpu/m6805/m6805.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/emu/cpu/m6805/m6805.c b/src/emu/cpu/m6805/m6805.c
index 822e5a078ff..0a69b51e288 100644
--- a/src/emu/cpu/m6805/m6805.c
+++ b/src/emu/cpu/m6805/m6805.c
@@ -522,7 +522,7 @@ static int m6805_execute(int cycles)
}
}
- CALL_DEBUGGER(PC);
+ debugger_instruction_hook(Machine, PC);
ireg=M_RDOP(PC++);
@@ -939,9 +939,7 @@ void m6805_get_info(UINT32 state, cpuinfo *info)
case CPUINFO_PTR_EXIT: info->exit = m6805_exit; break;
case CPUINFO_PTR_EXECUTE: info->execute = m6805_execute; break;
case CPUINFO_PTR_BURN: info->burn = NULL; break;
-#ifdef ENABLE_DEBUGGER
case CPUINFO_PTR_DISASSEMBLE: info->disassemble = m6805_dasm; break;
-#endif /* ENABLE_DEBUGGER */
case CPUINFO_PTR_INSTRUCTION_COUNTER: info->icount = &m6805_ICount; break;
/* --- the following bits of info are returned as NULL-terminated strings --- */