diff options
author | 2019-03-25 23:13:40 +0100 | |
---|---|---|
committer | 2019-03-25 23:13:40 +0100 | |
commit | b380514764cf857469bae61c11143a19f79a74c5 (patch) | |
tree | 63c8012e262618f08a332da31dd714281aa2c5ed /src/devices/machine/rtc65271.cpp | |
parent | c24473ddff715ecec2e258a6eb38960cf8c8e98e (diff) |
Revert "conflict resolution (nw)"
This reverts commit c24473ddff715ecec2e258a6eb38960cf8c8e98e, reversing
changes made to 009cba4fb8102102168ef32870892438327f3705.
Diffstat (limited to 'src/devices/machine/rtc65271.cpp')
-rw-r--r-- | src/devices/machine/rtc65271.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/rtc65271.cpp b/src/devices/machine/rtc65271.cpp index 9ccc83997bf..f44cc8255fc 100644 --- a/src/devices/machine/rtc65271.cpp +++ b/src/devices/machine/rtc65271.cpp @@ -346,12 +346,12 @@ uint8_t rtc65271_device::read(int xramsel, offs_t offset) return reply; } -uint8_t rtc65271_device::rtc_r(offs_t offset) +READ8_MEMBER( rtc65271_device::rtc_r ) { return read(0, offset ); } -uint8_t rtc65271_device::xram_r(offs_t offset) +READ8_MEMBER( rtc65271_device::xram_r ) { return read(1, offset ); } @@ -436,12 +436,12 @@ void rtc65271_device::write(int xramsel, offs_t offset, uint8_t data) } } -void rtc65271_device::rtc_w(offs_t offset, uint8_t data) +WRITE8_MEMBER( rtc65271_device::rtc_w ) { write(0, offset, data ); } -void rtc65271_device::xram_w(offs_t offset, uint8_t data) +WRITE8_MEMBER( rtc65271_device::xram_w ) { write(1, offset, data ); } |