summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/sh/sh4comn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/sh/sh4comn.cpp')
-rw-r--r--src/devices/cpu/sh/sh4comn.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/sh/sh4comn.cpp b/src/devices/cpu/sh/sh4comn.cpp
index f7678767e68..9c1d3bd3380 100644
--- a/src/devices/cpu/sh/sh4comn.cpp
+++ b/src/devices/cpu/sh/sh4comn.cpp
@@ -673,7 +673,7 @@ void sh34_base_device::sh4_handler_ipra_w(uint32_t data, uint32_t mem_mask)
}
-WRITE32_MEMBER( sh4_base_device::sh4_internal_w )
+void sh4_base_device::sh4_internal_w(offs_t offset, uint32_t data, uint32_t mem_mask)
{
int a;
uint32_t addr = (offset << 2) + 0xfe000000;
@@ -980,7 +980,7 @@ WRITE32_MEMBER( sh4_base_device::sh4_internal_w )
}
}
-READ32_MEMBER( sh4_base_device::sh4_internal_r )
+uint32_t sh4_base_device::sh4_internal_r(offs_t offset, uint32_t mem_mask)
{
if (m_cpu_type != CPU_TYPE_SH4)
fatalerror("sh4_internal_r uses m_m[] with SH3\n");