summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/saturn/rom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/saturn/rom.cpp')
-rw-r--r--src/devices/bus/saturn/rom.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/saturn/rom.cpp b/src/devices/bus/saturn/rom.cpp
index 1421018c298..5853a7b4bdb 100644
--- a/src/devices/bus/saturn/rom.cpp
+++ b/src/devices/bus/saturn/rom.cpp
@@ -47,7 +47,7 @@ void saturn_rom_device::device_reset()
mapper specific handlers
-------------------------------------------------*/
-READ32_MEMBER(saturn_rom_device::read_rom)
+uint32_t saturn_rom_device::read_rom(offs_t offset)
{
return m_rom[offset & (m_rom_size/4 - 1)];
}