blob: 6b6b533cf0b851bc433cb25c1959e153ab6a9143 (
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
|
// license:BSD-3-Clause
// copyright-holders:Wilbert Pol
#ifndef __MSX_AUDIO_KB_H__
#define __MSX_AUDIO_KB_H__
extern const device_type MSX_AUDIO_KBDC_PORT;
#define MCFG_MSX_AUDIO_KBDC_PORT_ADD(_tag, _slot_intf, _def_slot) \
MCFG_DEVICE_ADD(_tag, MSX_AUDIO_KBDC_PORT, 0 ) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false)
class msx_audio_kb_port_interface : public device_slot_card_interface
{
public:
// construction/destruction
msx_audio_kb_port_interface(const machine_config &mconfig, device_t &device)
: device_slot_card_interface(mconfig, device)
{ };
virtual DECLARE_READ8_MEMBER(read) { return 0xff; };
virtual DECLARE_WRITE8_MEMBER(write) { };
};
class msx_audio_kbdc_port_device : public device_t,
public device_slot_interface
{
public:
// construction/destruction
msx_audio_kbdc_port_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
// device-level overrides
virtual void device_start() override;
// Physical connection simply consists of 8 input and 8 output lines split across 2 connectors
DECLARE_WRITE8_MEMBER(write);
DECLARE_READ8_MEMBER(read);
msx_audio_kb_port_interface *m_keyboard;
};
SLOT_INTERFACE_EXTERN( msx_audio_keyboards );
#endif
|