diff options
Diffstat (limited to 'src/devices/machine/ra17xx.cpp')
-rw-r--r-- | src/devices/machine/ra17xx.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/ra17xx.cpp b/src/devices/machine/ra17xx.cpp index d45dec77e91..66fc3163da5 100644 --- a/src/devices/machine/ra17xx.cpp +++ b/src/devices/machine/ra17xx.cpp @@ -93,7 +93,7 @@ void ra17xx_device::device_reset() * *************************************/ -WRITE8_MEMBER( ra17xx_device::io_w ) +void ra17xx_device::io_w(address_space &space, offs_t offset, uint8_t data) { assert(offset < 16); @@ -138,7 +138,7 @@ WRITE8_MEMBER( ra17xx_device::io_w ) } -READ8_MEMBER( ra17xx_device::io_r ) +uint8_t ra17xx_device::io_r(offs_t offset) { assert(offset < 16); return (m_bl >= 16 || (m_iord(m_bl) & 1)) ? 0x0f : 0x07; |