summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/iopintc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/iopintc.cpp')
-rw-r--r--src/devices/machine/iopintc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/iopintc.cpp b/src/devices/machine/iopintc.cpp
index 96a8aef6034..15e57e00608 100644
--- a/src/devices/machine/iopintc.cpp
+++ b/src/devices/machine/iopintc.cpp
@@ -38,7 +38,7 @@ void iop_intc_device::device_reset()
m_enabled = false;
}
-READ32_MEMBER(iop_intc_device::read)
+uint32_t iop_intc_device::read(offs_t offset, uint32_t mem_mask)
{
uint32_t ret = 0;
switch (offset)
@@ -64,7 +64,7 @@ READ32_MEMBER(iop_intc_device::read)
return ret;
}
-WRITE32_MEMBER(iop_intc_device::write)
+void iop_intc_device::write(offs_t offset, uint32_t data, uint32_t mem_mask)
{
switch (offset)
{