blob: 6d32ca346e281dd0393627653d10c740034e153f (
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
27
|
/*********************************************************************
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(running_machine *machine, const char *param, UINT64 *result);
int debug_command_parameter_cpu(running_machine *machine, const char *param, const device_config **result);
#endif
|