summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/sega8/ccatch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/sega8/ccatch.cpp')
-rw-r--r--src/devices/bus/sega8/ccatch.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/sega8/ccatch.cpp b/src/devices/bus/sega8/ccatch.cpp
index 1180e7a793b..baf7fc52151 100644
--- a/src/devices/bus/sega8/ccatch.cpp
+++ b/src/devices/bus/sega8/ccatch.cpp
@@ -33,15 +33,15 @@ sega8_cardcatch_device::sega8_cardcatch_device(const machine_config &mconfig, co
mapper specific handlers
-------------------------------------------------*/
-READ8_MEMBER(sega8_cardcatch_device::read_cart)
+uint8_t sega8_cardcatch_device::read_cart(offs_t offset)
{
if (offset < 0x8000)
- return m_card->read_cart(space, offset);
+ return m_card->read_cart(offset);
return 0xff;
}
-WRITE8_MEMBER(sega8_cardcatch_device::write_cart)
+void sega8_cardcatch_device::write_cart(offs_t offset, uint8_t data)
{
// this should never happen, because there is no RAM on cards
if (offset < 0x8000)