summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/jakks_gamekey/slot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/jakks_gamekey/slot.cpp')
-rw-r--r--src/devices/bus/jakks_gamekey/slot.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/jakks_gamekey/slot.cpp b/src/devices/bus/jakks_gamekey/slot.cpp
index 226a4ea5540..2072b8cc3f3 100644
--- a/src/devices/bus/jakks_gamekey/slot.cpp
+++ b/src/devices/bus/jakks_gamekey/slot.cpp
@@ -204,18 +204,18 @@ std::string jakks_gamekey_slot_device::get_default_card_software(get_default_car
read
-------------------------------------------------*/
-READ16_MEMBER(jakks_gamekey_slot_device::read_cart)
+uint16_t jakks_gamekey_slot_device::read_cart(offs_t offset)
{
- return m_cart->read_cart(space, offset);
+ return m_cart->read_cart(offset);
}
/*-------------------------------------------------
write
-------------------------------------------------*/
-WRITE16_MEMBER(jakks_gamekey_slot_device::write_cart)
+void jakks_gamekey_slot_device::write_cart(offs_t offset, uint16_t data)
{
- m_cart->write_cart(space, offset, data);
+ m_cart->write_cart(offset, data);
}
/*-------------------------------------------------