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:BSD-3-Clause
// copyright-holders:Curt Coder
#include "emu.h"
#include "slutprov.h"
//**************************************************************************
// DEVICE DEFINITIONS
//**************************************************************************
const device_type ABC_SLUTPROV = &device_creator<abc_slutprov_device>;
//-------------------------------------------------
// ROM( abc_slutprov )
//-------------------------------------------------
ROM_START( abc_slutprov )
ROM_REGION( 0x800, "slutprov", 0 )
ROM_LOAD( "slutprov.bin", 0x0000, 0x0800, CRC(a5bb56f4) SHA1(f97cb6526a1d10b189164f26157522e382ca6bc6) )
ROM_END
//-------------------------------------------------
// rom_region - device-specific ROM region
//-------------------------------------------------
const tiny_rom_entry *abc_slutprov_device::device_rom_region() const
{
return ROM_NAME( abc_slutprov );
}
//**************************************************************************
// LIVE DEVICE
//**************************************************************************
//-------------------------------------------------
// abc_slutprov_device - constructor
//-------------------------------------------------
abc_slutprov_device::abc_slutprov_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, ABC_SLUTPROV, "Slutprov", tag, owner, clock, "slutprov", __FILE__),
device_abcbus_card_interface(mconfig, *this)
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------
void abc_slutprov_device::device_start()
{
}
//-------------------------------------------------
// device_reset - device-specific reset
//-------------------------------------------------
void abc_slutprov_device::device_reset()
{
}
//**************************************************************************
// ABC BUS INTERFACE
//**************************************************************************
//-------------------------------------------------
// abcbus_cs -
//-------------------------------------------------
void abc_slutprov_device::abcbus_cs(uint8_t data)
{
}
|