summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/debug_module.h
blob: 789e511e5960d15a58d8eac9284a61f00f9bb284 (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
/*
 * debug_module.h
 *
 */

#ifndef DEBUG_MODULE_H_
#define DEBUG_MODULE_H_

#include "osdepend.h"
#include "modules/osdmodule.h"
#include "emu.h"

//============================================================
//  CONSTANTS
//============================================================

#define OSD_DEBUG_PROVIDER "debugger"

class debug_module
{
public:

    virtual ~debug_module() { }

    virtual void init_debugger(running_machine &machine) = 0;
    virtual void wait_for_debugger(device_t &device, bool firststop) = 0;
    virtual void debugger_update() = 0;
};



#endif /* DEBUG_MODULE_H_ */