summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/debug_module.h
blob: 6fbbfe0d605d8827a90c2bec0406a7ea4b8ef0ef (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
// license:BSD-3-Clause
// copyright-holders:Couriersud
/*
 * 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_ */