summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcmd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debug/debugcmd.h')
-rw-r--r--src/emu/debug/debugcmd.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/emu/debug/debugcmd.h b/src/emu/debug/debugcmd.h
new file mode 100644
index 00000000000..b59587718f8
--- /dev/null
+++ b/src/emu/debug/debugcmd.h
@@ -0,0 +1,26 @@
+/*********************************************************************
+
+ debugcmd.h
+
+ Debugger command interface engine.
+
+ Copyright (c) 1996-2007, Nicola Salmoria and the MAME Team.
+ Visit http://mamedev.org for licensing and usage restrictions.
+
+*********************************************************************/
+
+#ifndef __DEBUGCMD_H__
+#define __DEBUGCMD_H__
+
+
+/***************************************************************************
+ FUNCTION PROTOTYPES
+***************************************************************************/
+
+/* initialization */
+void debug_command_init(running_machine *machine);
+
+/* parameter validation */
+int debug_command_parameter_number(const char *param, UINT64 *result);
+
+#endif