summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/msx_cart/dooly.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/msx_cart/dooly.cpp')
-rw-r--r--src/devices/bus/msx_cart/dooly.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/msx_cart/dooly.cpp b/src/devices/bus/msx_cart/dooly.cpp
index d1d3ad9ff39..a0c4c7b4f83 100644
--- a/src/devices/bus/msx_cart/dooly.cpp
+++ b/src/devices/bus/msx_cart/dooly.cpp
@@ -36,7 +36,7 @@ void msx_cart_dooly_device::initialize_cartridge()
}
-READ8_MEMBER(msx_cart_dooly_device::read_cart)
+uint8_t msx_cart_dooly_device::read_cart(offs_t offset)
{
if (offset >= 0x4000 && offset < 0xc000)
{
@@ -54,7 +54,7 @@ READ8_MEMBER(msx_cart_dooly_device::read_cart)
}
-WRITE8_MEMBER(msx_cart_dooly_device::write_cart)
+void msx_cart_dooly_device::write_cart(offs_t offset, uint8_t data)
{
if (offset >= 0x4000 && offset < 0xc000)
{