summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/hpc1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/hpc1.cpp')
-rw-r--r--src/mame/machine/hpc1.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/hpc1.cpp b/src/mame/machine/hpc1.cpp
index b5858c268a2..28293b297bd 100644
--- a/src/mame/machine/hpc1.cpp
+++ b/src/mame/machine/hpc1.cpp
@@ -201,7 +201,7 @@ void hpc1_device::device_add_mconfig(machine_config &config)
// REGISTER ACCESS
//**************************************************************************
-READ32_MEMBER(hpc1_device::read)
+uint32_t hpc1_device::read(offs_t offset, uint32_t mem_mask)
{
if (offset >= 0x0e00/4 && offset <= 0x0e7c/4)
return m_rtc->read(offset - 0xe00/4);
@@ -327,7 +327,7 @@ READ32_MEMBER(hpc1_device::read)
return 0;
}
-WRITE32_MEMBER(hpc1_device::write)
+void hpc1_device::write(offs_t offset, uint32_t data, uint32_t mem_mask)
{
if (offset >= 0x0e00/4 && offset <= 0x0e7c/4)
{