blob: 8364e879d17d1b2a10fd4fb661702c9ccf7fa4e4 (
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 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
|