summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Dirk Best <mail@dirk-best.de>2019-08-26 15:46:16 +0200
committer Dirk Best <mail@dirk-best.de>2019-08-26 15:46:16 +0200
commit47fd7df7f896c174243fca0713fc60dd15657422 (patch)
tree1b2d30e84efda00e8c4573e9a9a554312b5ad55e
parent3625aa64596d63fc49df93d56328d8b028914903 (diff)
Fix build (nw)
-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;
}