diff options
Diffstat (limited to 'src/devices/machine/k053252.cpp')
-rw-r--r-- | src/devices/machine/k053252.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/k053252.cpp b/src/devices/machine/k053252.cpp index 050a7faea90..6972d0f5c96 100644 --- a/src/devices/machine/k053252.cpp +++ b/src/devices/machine/k053252.cpp @@ -135,7 +135,7 @@ void k053252_device::reset_internal_state() DEVICE HANDLERS *****************************************************************************/ -READ8_MEMBER( k053252_device::read ) +uint8_t k053252_device::read(offs_t offset) { //TODO: debugger_access() switch(offset) @@ -188,7 +188,7 @@ void k053252_device::res_change() } } -WRITE8_MEMBER( k053252_device::write ) +void k053252_device::write(offs_t offset, uint8_t data) { m_regs[offset] = data; |