summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/mtx/rompak.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/mtx/rompak.cpp')
-rw-r--r--src/devices/bus/mtx/rompak.cpp51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/devices/bus/mtx/rompak.cpp b/src/devices/bus/mtx/rompak.cpp
new file mode 100644
index 00000000000..6f870c540ce
--- /dev/null
+++ b/src/devices/bus/mtx/rompak.cpp
@@ -0,0 +1,51 @@
+// license:BSD-3-Clause
+// copyright-holders:Nigel Barnes
+/**********************************************************************
+
+ Memotech ROMPAK
+
+**********************************************************************/
+
+#include "emu.h"
+#include "rompak.h"
+
+
+//**************************************************************************
+// DEVICE DEFINITIONS
+//**************************************************************************
+
+DEFINE_DEVICE_TYPE(MTX_ROMPAK, mtx_rompak_device, "rompak", "MTX ROMPAK")
+
+
+//**************************************************************************
+// LIVE DEVICE
+//**************************************************************************
+
+//-------------------------------------------------
+// mtx_rompak_device - constructor
+//-------------------------------------------------
+
+mtx_rompak_device::mtx_rompak_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock)
+ : device_t(mconfig, MTX_ROMPAK, tag, owner, clock)
+ , device_mtx_exp_interface(mconfig, *this)
+{
+}
+
+
+//-------------------------------------------------
+// device_start - device-specific startup
+//-------------------------------------------------
+
+void mtx_rompak_device::device_start()
+{
+}
+
+
+//-------------------------------------------------
+// device_reset - device-specific reset
+//-------------------------------------------------
+
+void mtx_rompak_device::device_reset()
+{
+ machine().root_device().membank("rommap_bank1")->configure_entry(7, get_rom_base());
+}