summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/mc68hc11/mc68hc11.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/mc68hc11/mc68hc11.c')
-rw-r--r--src/emu/cpu/mc68hc11/mc68hc11.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/emu/cpu/mc68hc11/mc68hc11.c b/src/emu/cpu/mc68hc11/mc68hc11.c
index b339ef9e115..c5eae242e94 100644
--- a/src/emu/cpu/mc68hc11/mc68hc11.c
+++ b/src/emu/cpu/mc68hc11/mc68hc11.c
@@ -384,7 +384,7 @@ static int hc11_execute(int cycles)
UINT8 op;
hc11.ppc = hc11.pc;
- CALL_DEBUGGER(hc11.pc);
+ debugger_instruction_hook(Machine, hc11.pc);
op = FETCH();
hc11_optable[op]();
@@ -457,9 +457,7 @@ void mc68hc11_get_info(UINT32 state, cpuinfo *info)
case CPUINFO_PTR_EXIT: info->exit = hc11_exit; break;
case CPUINFO_PTR_EXECUTE: info->execute = hc11_execute; break;
case CPUINFO_PTR_BURN: info->burn = NULL; break;
-#ifdef ENABLE_DEBUGGER
case CPUINFO_PTR_DISASSEMBLE: info->disassemble = hc11_disasm; break;
-#endif /* ENABLE_DEBUGGER */
case CPUINFO_PTR_INSTRUCTION_COUNTER: info->icount = &hc11.icount; break;
/* --- the following bits of info are returned as NULL-terminated strings --- */