summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/68307bus.h
blob: 6eb206ae9d8ef6c1b48eb91ed7b6970392de8194 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "cpu/m68000/m68000.h"

#define m68307BUS_MADR (0x01)
#define m68307BUS_MFDR (0x03)
#define m68307BUS_MBCR (0x05)
#define m68307BUS_MBSR (0x07)
#define m68307BUS_MBDR (0x09)


class m68307_mbus
{
	public:

	UINT16 m_MFCR;

	bool m_busy;
	bool m_intpend;

	void reset(void);
};