summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/rp5c01.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/rp5c01.cpp')
-rw-r--r--src/devices/machine/rp5c01.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/rp5c01.cpp b/src/devices/machine/rp5c01.cpp
index 6bbc68be94e..67850396213 100644
--- a/src/devices/machine/rp5c01.cpp
+++ b/src/devices/machine/rp5c01.cpp
@@ -310,7 +310,7 @@ void rp5c01_device::nvram_write(emu_file &file)
// read -
//-------------------------------------------------
-READ8_MEMBER( rp5c01_device::read )
+uint8_t rp5c01_device::read(offs_t offset)
{
uint8_t data = 0;
offset &= 0x0f;
@@ -355,7 +355,7 @@ READ8_MEMBER( rp5c01_device::read )
// write -
//-------------------------------------------------
-WRITE8_MEMBER( rp5c01_device::write )
+void rp5c01_device::write(offs_t offset, uint8_t data)
{
data &= 0x0f;
offset &= 0x0f;