summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debugger.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-03-28 05:25:15 +1100
committer Vas Crabb <vas@vastheman.com>2018-03-28 05:25:15 +1100
commit010155a3c51aa80dcf736b52ec89ffd890f795ef (patch)
treea732be4076a467e5dc25f088f9296544f364f858 /src/emu/debugger.h
parent703564beccc92a6b6b33ab9562732a4e7ceaae8d (diff)
Reshuffle some stuff:
* Move around the debugger hooks to get a small but measurable performance increase * Remove emucore from external tools * Improve performance of DSP16 interpreter a little by generating six variants of execution loop
Diffstat (limited to 'src/emu/debugger.h')
-rw-r--r--src/emu/debugger.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/emu/debugger.h b/src/emu/debugger.h
index 91431d31631..95658eb8250 100644
--- a/src/emu/debugger.h
+++ b/src/emu/debugger.h
@@ -52,24 +52,4 @@ private:
/* OSD can call this to safely flush all traces in the event of a crash */
void debugger_flush_all_traces_on_abnormal_exit();
-
-
-/***************************************************************************
- CPU CORE STATIC FUNCTIONS
-***************************************************************************/
-
-void debugger_instruction_hook(device_t *device, offs_t curpc);
-void debugger_exception_hook(device_t *device, int exception);
-
-
-
-/***************************************************************************
- CPU EXECUTION SYSTEM STATIC FUNCTIONS
-***************************************************************************/
-
-void debugger_start_cpu_hook(device_t *device, const attotime &endtime);
-void debugger_stop_cpu_hook(device_t *device);
-void debugger_interrupt_hook(device_t *device, int irqline);
-
-
#endif // MAME_EMU_DEBUGGER_H