summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/dsp56156/dsp56mem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/dsp56156/dsp56mem.cpp')
-rw-r--r--src/devices/cpu/dsp56156/dsp56mem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/dsp56156/dsp56mem.cpp b/src/devices/cpu/dsp56156/dsp56mem.cpp
index 37e249f15ca..9f61089b9b4 100644
--- a/src/devices/cpu/dsp56156/dsp56mem.cpp
+++ b/src/devices/cpu/dsp56156/dsp56mem.cpp
@@ -487,7 +487,7 @@ void dsp56156_io_reset(dsp56156_core* cpustate)
/* Work */
-READ16_MEMBER( dsp56156_device::peripheral_register_r )
+uint16_t dsp56156_device::peripheral_register_r(offs_t offset)
{
dsp56156_core* cpustate = &m_core;
// (printf) cpustate->device->logerror("Peripheral read 0x%04x\n", O2A(offset));
@@ -621,7 +621,7 @@ READ16_MEMBER( dsp56156_device::peripheral_register_r )
return cpustate->peripheral_ram[offset];
}
-WRITE16_MEMBER( dsp56156_device::peripheral_register_w )
+void dsp56156_device::peripheral_register_w(offs_t offset, uint16_t data)
{
dsp56156_core* cpustate = &m_core;