diff options
| author | 2007-12-17 15:19:59 +0000 | |
|---|---|---|
| committer | 2007-12-17 15:19:59 +0000 | |
| commit | 7b77f1218624ea26dbb2efd85a19f795f5d4e02e (patch) | |
| tree | 19209304095572b4fd61c2a2d6a5aa75c4e471ad /src/emu/debug/debugcmd.h | |
| parent | 3da7f476068b3ffef713218ba2fc1bd5030f2c38 (diff) | |
Initial checkin of MAME 0.121.mame0121
Diffstat (limited to 'src/emu/debug/debugcmd.h')
| -rw-r--r-- | src/emu/debug/debugcmd.h | 26 |
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 |
