summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/z88/flash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/z88/flash.cpp')
-rw-r--r--src/devices/bus/z88/flash.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/z88/flash.cpp b/src/devices/bus/z88/flash.cpp
index ee92f351ec7..c769530b1de 100644
--- a/src/devices/bus/z88/flash.cpp
+++ b/src/devices/bus/z88/flash.cpp
@@ -71,7 +71,7 @@ uint8_t* z88_1024k_flash_device::get_cart_base()
read
-------------------------------------------------*/
-READ8_MEMBER(z88_1024k_flash_device::read)
+uint8_t z88_1024k_flash_device::read(offs_t offset)
{
return m_flash->read(offset & (get_cart_size() - 1));
}
@@ -80,7 +80,7 @@ READ8_MEMBER(z88_1024k_flash_device::read)
write
-------------------------------------------------*/
-WRITE8_MEMBER(z88_1024k_flash_device::write)
+void z88_1024k_flash_device::write(offs_t offset, uint8_t data)
{
m_flash->write(offset & (get_cart_size() - 1), data);
}