diff options
Diffstat (limited to 'src/devices/machine/rp5c15.cpp')
-rw-r--r-- | src/devices/machine/rp5c15.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/rp5c15.cpp b/src/devices/machine/rp5c15.cpp index 7d9b3b9b320..78d71d42000 100644 --- a/src/devices/machine/rp5c15.cpp +++ b/src/devices/machine/rp5c15.cpp @@ -293,7 +293,7 @@ void rp5c15_device::rtc_clock_updated(int year, int month, int day, int day_of_w // read - //------------------------------------------------- -READ8_MEMBER( rp5c15_device::read ) +uint8_t rp5c15_device::read(offs_t offset) { uint8_t data = 0; offset &= 0x0f; @@ -324,7 +324,7 @@ READ8_MEMBER( rp5c15_device::read ) // write - //------------------------------------------------- -WRITE8_MEMBER( rp5c15_device::write ) +void rp5c15_device::write(offs_t offset, uint8_t data) { data &= 0x0f; offset &= 0x0f; |