summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/abcbus/slutprov.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/abcbus/slutprov.c')
-rw-r--r--src/devices/bus/abcbus/slutprov.c79
1 files changed, 79 insertions, 0 deletions
diff --git a/src/devices/bus/abcbus/slutprov.c b/src/devices/bus/abcbus/slutprov.c
new file mode 100644
index 00000000000..bd1184c15c5
--- /dev/null
+++ b/src/devices/bus/abcbus/slutprov.c
@@ -0,0 +1,79 @@
+// license:BSD-3-Clause
+// copyright-holders:Curt Coder
+#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 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 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 data)
+{
+}