blob: b59587718f8c1dc1ac4b4b5a410dddcc3dee8b18 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
|