summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/z88/rom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/z88/rom.cpp')
-rw-r--r--src/devices/bus/z88/rom.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/z88/rom.cpp b/src/devices/bus/z88/rom.cpp
index ea1feb603f4..c265d99dfc9 100644
--- a/src/devices/bus/z88/rom.cpp
+++ b/src/devices/bus/z88/rom.cpp
@@ -81,7 +81,7 @@ uint8_t* z88_32k_rom_device::get_cart_base()
read
-------------------------------------------------*/
-READ8_MEMBER(z88_32k_rom_device::read)
+uint8_t z88_32k_rom_device::read(offs_t offset)
{
return m_rom[offset & (get_cart_size() - 1)];
}