summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pofo/hpc101.cpp
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2018-09-23 00:51:57 +0100
committer smf- <smf-@users.noreply.github.com>2018-09-23 00:56:29 +0100
commitf604bed06829ce8781113d9cf779377b4b31df4d (patch)
treefff8fb70566d2baeffea461445bc08c25faf3287 /src/devices/bus/pofo/hpc101.cpp
parent3af1087df91aba40cffdb1f34c818ff62853ea6e (diff)
space, space, space, space, space, space, space, space, mem_mask (nw)
Diffstat (limited to 'src/devices/bus/pofo/hpc101.cpp')
-rw-r--r--src/devices/bus/pofo/hpc101.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/pofo/hpc101.cpp b/src/devices/bus/pofo/hpc101.cpp
index de0e7db1f6d..93268e95bb6 100644
--- a/src/devices/bus/pofo/hpc101.cpp
+++ b/src/devices/bus/pofo/hpc101.cpp
@@ -107,7 +107,7 @@ uint8_t pofo_hpc101_device::nrdi_r(address_space &space, offs_t offset, uint8_t
if ((offset & 0x0c) == 0x08)
{
- data = m_ppi->read(space, offset & 0x03);
+ data = m_ppi->read(offset & 0x03);
}
}
@@ -125,7 +125,7 @@ void pofo_hpc101_device::nwri_w(address_space &space, offs_t offset, uint8_t dat
{
if ((offset & 0x0c) == 0x08)
{
- m_ppi->write(space, offset & 0x03, data);
+ m_ppi->write(offset & 0x03, data);
}
}
}