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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
// license:MAME
// copyright-holders:Angelo Salese
/**********************************************************************
CCBUS Slot interface for PC-98xx family
**********************************************************************/
#include "pc9801_cbus.h"
//**************************************************************************
// GLOBAL VARIABLES
//**************************************************************************
const device_type PC9801CBUS_SLOT = &device_creator<pc9801_slot_device>;
//**************************************************************************
// DEVICE PC9801 CARD INTERFACE
//**************************************************************************
#if 0
//-------------------------------------------------
// device_pc9801cbus_card_interface - constructor
//-------------------------------------------------
device_pc9801cbus_card_interface::device_pc9801cbus_card_interface(const machine_config &mconfig, device_t &device)
: device_slot_card_interface(mconfig, device)
{
}
//-------------------------------------------------
// ~device_pc9801cbus_card_interface - destructor
//-------------------------------------------------
device_pc9801cbus_card_interface::~device_pc9801cbus_card_interface()
{
}
#endif
//**************************************************************************
// LIVE DEVICE
//**************************************************************************
//-------------------------------------------------
// pc9801_slot_device - constructor
//-------------------------------------------------
pc9801_slot_device::pc9801_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
device_t(mconfig, PC9801CBUS_SLOT, "PC-9801 sound cbus slot", tag, owner, clock, "pc9801_slot", __FILE__),
device_slot_interface(mconfig, *this)
{
}
//-------------------------------------------------
// device_config_complete - perform any
// operations now that the configuration is
// complete
//-------------------------------------------------
void pc9801_slot_device::device_config_complete()
{
// ...
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------
void pc9801_slot_device::device_start()
{
// m_card = dynamic_cast<device_pc9801_slot_card_interface *>(get_card_device());
}
|