1 // license:BSD-3-Clause
2 // copyright-holders:Curt Coder
3 #include "emu.h"
4 #include "slutprov.h"
5 
6 
7 
8 //**************************************************************************
9 //  DEVICE DEFINITIONS
10 //**************************************************************************
11 
12 DEFINE_DEVICE_TYPE(ABC_SLUTPROV, abc_slutprov_device, "abc_slutprov", "Slutprov")
13 
14 
15 //-------------------------------------------------
16 //  ROM( abc_slutprov )
17 //-------------------------------------------------
18 
ROM_START(abc_slutprov)19 ROM_START( abc_slutprov )
20 	ROM_REGION( 0x800, "slutprov", 0 )
21 	ROM_LOAD( "slutprov.bin",   0x0000, 0x0800, CRC(a5bb56f4) SHA1(f97cb6526a1d10b189164f26157522e382ca6bc6) )
22 ROM_END
23 
24 
25 //-------------------------------------------------
26 //  rom_region - device-specific ROM region
27 //-------------------------------------------------
28 
29 const tiny_rom_entry *abc_slutprov_device::device_rom_region() const
30 {
31 	return ROM_NAME( abc_slutprov );
32 }
33 
34 
35 
36 //**************************************************************************
37 //  LIVE DEVICE
38 //**************************************************************************
39 
40 //-------------------------------------------------
41 //  abc_slutprov_device - constructor
42 //-------------------------------------------------
43 
abc_slutprov_device(const machine_config & mconfig,const char * tag,device_t * owner,uint32_t clock)44 abc_slutprov_device::abc_slutprov_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
45 	: device_t(mconfig, ABC_SLUTPROV, tag, owner, clock),
46 		device_abcbus_card_interface(mconfig, *this)
47 {
48 }
49 
50 
51 //-------------------------------------------------
52 //  device_start - device-specific startup
53 //-------------------------------------------------
54 
device_start()55 void abc_slutprov_device::device_start()
56 {
57 }
58 
59 
60 //-------------------------------------------------
61 //  device_reset - device-specific reset
62 //-------------------------------------------------
63 
device_reset()64 void abc_slutprov_device::device_reset()
65 {
66 }
67 
68 
69 
70 //**************************************************************************
71 //  ABC BUS INTERFACE
72 //**************************************************************************
73 
74 //-------------------------------------------------
75 //  abcbus_cs -
76 //-------------------------------------------------
77 
abcbus_cs(uint8_t data)78 void abc_slutprov_device::abcbus_cs(uint8_t data)
79 {
80 }
81