blob: a2721ec83214adcbc5ce3ec89918d6c9bb80b87e (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// license:???
// copyright-holders:Jonathan Edwards
/*********************************************************************
bml3mp1802.h
Hitachi MP-1802 floppy disk controller card for the MB-6890
Hitachi MP-3550 floppy drive is attached
*********************************************************************/
#ifndef __BML3BUS_MP1802__
#define __BML3BUS_MP1802__
#include "emu.h"
#include "bml3bus.h"
#include "imagedev/flopdrv.h"
#include "machine/wd17xx.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
class bml3bus_mp1802_device:
public device_t,
public device_bml3bus_card_interface
{
public:
// construction/destruction
bml3bus_mp1802_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// optional information overrides
virtual machine_config_constructor device_mconfig_additions() const;
virtual const rom_entry *device_rom_region() const;
DECLARE_READ8_MEMBER(bml3_mp1802_r);
DECLARE_WRITE8_MEMBER(bml3_mp1802_w);
DECLARE_WRITE_LINE_MEMBER(bml3_wd17xx_intrq_w);
protected:
virtual void device_start();
virtual void device_reset();
required_device<mb8866_device> m_wd17xx;
private:
UINT8 *m_rom;
};
// device type definition
extern const device_type BML3BUS_MP1802;
#endif /* __BML3BUS_MP1802__ */
|