blob: 32f779248851abc5a7159b8b545188b4ed72988e (
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
28
29
30
31
32
33
34
|
/*********************************************************************
debugint.c
Internal debugger frontend using render interface.
Copyright Nicola Salmoria and the MAME Team.
Visit http://mamedev.org for licensing and usage restrictions.
*********************************************************************/
#pragma once
#ifndef __DEBUGGER_INTERNAL_H__
#define __DEBUGGER_INTERNAL_H__
#include "osdepend.h"
class debugger_internal : public osd_debugger_interface
{
public:
// construction/destruction
debugger_internal(const osd_interface &osd);
virtual ~debugger_internal() { }
virtual void init_debugger();
virtual void wait_for_debugger(device_t &device, bool firststop);
virtual void debugger_update();
virtual void debugger_exit();
};
extern const osd_debugger_type OSD_DEBUGGER_INTERNAL;
#endif /* __DEBUGGER_INTERNAL_H__ */
|