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 8ffb6e25a14..b5858c268a2 100644
--- a/src/mame/machine/hpc1.cpp
+++ b/src/mame/machine/hpc1.cpp
@@ -204,7 +204,7 @@ void hpc1_device::device_add_mconfig(machine_config &config)
READ32_MEMBER(hpc1_device::read)
{
if (offset >= 0x0e00/4 && offset <= 0x0e7c/4)
- return m_rtc->read(space, offset - 0xe00/4);
+ return m_rtc->read(offset - 0xe00/4);
switch (offset)
{
@@ -331,7 +331,7 @@ WRITE32_MEMBER(hpc1_device::write)
{
if (offset >= 0x0e00/4 && offset <= 0x0e7c/4)
{
- m_rtc->write(space, offset - 0xe00/4, (uint8_t)data);
+ m_rtc->write(offset - 0xe00/4, (uint8_t)data);
return;
}