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