summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/neogeo/rom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/neogeo/rom.cpp')
-rw-r--r--src/devices/bus/neogeo/rom.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/neogeo/rom.cpp b/src/devices/bus/neogeo/rom.cpp
index 0f54a808cef..290ea9f3a5d 100644
--- a/src/devices/bus/neogeo/rom.cpp
+++ b/src/devices/bus/neogeo/rom.cpp
@@ -49,7 +49,7 @@ void neogeo_rom_device::device_reset()
mapper specific handlers
-------------------------------------------------*/
-READ16_MEMBER(neogeo_rom_device::rom_r)
+uint16_t neogeo_rom_device::rom_r(offs_t offset)
{
// to speed up access to ROM, the access to ROM are actually replaced in the driver
// by accesses to the maincpu rom region, where we have anyway copied the rom content
@@ -58,7 +58,7 @@ READ16_MEMBER(neogeo_rom_device::rom_r)
}
-WRITE16_MEMBER(neogeo_rom_device::banksel_w)
+void neogeo_rom_device::banksel_w(uint16_t data)
{
// to speed up access to ROM, the banking is taken care of at driver level
// by mapping higher banks to the corresponding offset in maincpu rom region