summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bw2/exp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/bw2/exp.cpp')
-rw-r--r--src/devices/bus/bw2/exp.cpp191
1 files changed, 191 insertions, 0 deletions
diff --git a/src/devices/bus/bw2/exp.cpp b/src/devices/bus/bw2/exp.cpp
new file mode 100644
index 00000000000..b094283a862
--- /dev/null
+++ b/src/devices/bus/bw2/exp.cpp
@@ -0,0 +1,191 @@
+// license:BSD-3-Clause
+// copyright-holders:Curt Coder
+/**********************************************************************
+
+ Bondwell 2 Expansion Port emulation
+
+**********************************************************************/
+
+#include "exp.h"
+
+
+
+//**************************************************************************
+// GLOBAL VARIABLES
+//**************************************************************************
+
+const device_type BW2_EXPANSION_SLOT = &device_creator<bw2_expansion_slot_device>;
+
+
+
+//**************************************************************************
+// CARD INTERFACE
+//**************************************************************************
+
+//-------------------------------------------------
+// device_bw2_expansion_slot_interface - constructor
+//-------------------------------------------------
+
+device_bw2_expansion_slot_interface::device_bw2_expansion_slot_interface(const machine_config &mconfig, device_t &device)
+ : device_slot_card_interface(mconfig,device)
+{
+ m_slot = dynamic_cast<bw2_expansion_slot_device *>(device.owner());
+}
+
+
+//-------------------------------------------------
+// ~device_bw2_expansion_slot_interface - destructor
+//-------------------------------------------------
+
+device_bw2_expansion_slot_interface::~device_bw2_expansion_slot_interface()
+{
+}
+
+
+
+//**************************************************************************
+// LIVE DEVICE
+//**************************************************************************
+
+//-------------------------------------------------
+// bw2_expansion_slot_device - constructor
+//-------------------------------------------------
+
+bw2_expansion_slot_device::bw2_expansion_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+ device_t(mconfig, BW2_EXPANSION_SLOT, "Bondwell 2 expansion port", tag, owner, clock, "bw2_expansion_slot", __FILE__),
+ device_slot_interface(mconfig, *this)
+{
+}
+
+
+//-------------------------------------------------
+// bw2_expansion_slot_device - destructor
+//-------------------------------------------------
+
+bw2_expansion_slot_device::~bw2_expansion_slot_device()
+{
+}
+
+
+//-------------------------------------------------
+// device_start - device-specific startup
+//-------------------------------------------------
+
+void bw2_expansion_slot_device::device_start()
+{
+ m_cart = dynamic_cast<device_bw2_expansion_slot_interface *>(get_card_device());
+}
+
+
+//-------------------------------------------------
+// device_reset - device-specific reset
+//-------------------------------------------------
+
+void bw2_expansion_slot_device::device_reset()
+{
+ if (m_cart != NULL)
+ {
+ m_cart->device().reset();
+ }
+}
+
+
+//-------------------------------------------------
+// cd_r - cartridge data read
+//-------------------------------------------------
+
+UINT8 bw2_expansion_slot_device::cd_r(address_space &space, offs_t offset, UINT8 data, int ram2, int ram3, int ram4, int ram5, int ram6)
+{
+ if (m_cart != NULL)
+ {
+ data = m_cart->bw2_cd_r(space, offset, data, ram2, ram3, ram4, ram5, ram6);
+ }
+
+ return data;
+}
+
+
+//-------------------------------------------------
+// cd_w - cartridge data write
+//-------------------------------------------------
+
+void bw2_expansion_slot_device::cd_w(address_space &space, offs_t offset, UINT8 data, int ram2, int ram3, int ram4, int ram5, int ram6)
+{
+ if (m_cart != NULL)
+ {
+ m_cart->bw2_cd_w(space, offset, data, ram2, ram3, ram4, ram5, ram6);
+ }
+}
+
+
+//-------------------------------------------------
+// slot_r - slot read
+//-------------------------------------------------
+
+READ8_MEMBER( bw2_expansion_slot_device::slot_r )
+{
+ UINT8 data = 0xff;
+
+ if (m_cart != NULL)
+ {
+ data = m_cart->bw2_slot_r(space, offset);
+ }
+
+ return data;
+}
+
+
+//-------------------------------------------------
+// slot_w - slot write
+//-------------------------------------------------
+
+WRITE8_MEMBER( bw2_expansion_slot_device::slot_w )
+{
+ if (m_cart != NULL)
+ {
+ m_cart->bw2_slot_w(space, offset, data);
+ }
+}
+
+
+//-------------------------------------------------
+// modsel_r - modsel read
+//-------------------------------------------------
+
+READ8_MEMBER( bw2_expansion_slot_device::modsel_r )
+{
+ UINT8 data = 0xff;
+
+ if (m_cart != NULL)
+ {
+ data = m_cart->bw2_modsel_r(space, offset);
+ }
+
+ return data;
+}
+
+
+//-------------------------------------------------
+// modsel_w - modsel write
+//-------------------------------------------------
+
+WRITE8_MEMBER( bw2_expansion_slot_device::modsel_w )
+{
+ if (m_cart != NULL)
+ {
+ m_cart->bw2_modsel_w(space, offset, data);
+ }
+}
+
+
+
+//-------------------------------------------------
+// SLOT_INTERFACE( bw2_expansion_cards )
+//-------------------------------------------------
+
+// slot devices
+#include "ramcard.h"
+
+SLOT_INTERFACE_START( bw2_expansion_cards )
+ SLOT_INTERFACE("ramcard", BW2_RAMCARD)
+SLOT_INTERFACE_END