summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/68307bus.h
blob: eb6db9811ae4143a939aa940d01306ffdc35dd63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// license:BSD-3-Clause
// copyright-holders:David Haywood
#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_t m_MFCR;

	bool m_busy;
	bool m_intpend;

	void reset(void);
};