summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/debug_module.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/modules/debugger/debug_module.h')
-rw-r--r--src/osd/modules/debugger/debug_module.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/osd/modules/debugger/debug_module.h b/src/osd/modules/debugger/debug_module.h
index fccea46b8be..789e511e596 100644
--- a/src/osd/modules/debugger/debug_module.h
+++ b/src/osd/modules/debugger/debug_module.h
@@ -6,6 +6,16 @@
#ifndef DEBUG_MODULE_H_
#define DEBUG_MODULE_H_
+#include "osdepend.h"
+#include "modules/osdmodule.h"
+#include "emu.h"
+
+//============================================================
+// CONSTANTS
+//============================================================
+
+#define OSD_DEBUG_PROVIDER "debugger"
+
class debug_module
{
public:
@@ -15,7 +25,6 @@ public:
virtual void init_debugger(running_machine &machine) = 0;
virtual void wait_for_debugger(device_t &device, bool firststop) = 0;
virtual void debugger_update() = 0;
- virtual void debugger_exit() = 0;
};