summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/pds.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/isa/pds.cpp
parent3af1087df91aba40cffdb1f34c818ff62853ea6e (diff)
space, space, space, space, space, space, space, space, mem_mask (nw)
Diffstat (limited to 'src/devices/bus/isa/pds.cpp')
-rw-r--r--src/devices/bus/isa/pds.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/pds.cpp b/src/devices/bus/isa/pds.cpp
index bdcecad8ca1..45dffd9904e 100644
--- a/src/devices/bus/isa/pds.cpp
+++ b/src/devices/bus/isa/pds.cpp
@@ -32,14 +32,14 @@ isa8_pds_device::isa8_pds_device(const machine_config &mconfig, const char *tag,
READ8_MEMBER(isa8_pds_device::ppi_r)
{
if(!(offset & 0x01))
- return m_ppi->read(space,offset/2);
+ return m_ppi->read(offset/2);
return 0xff;
}
WRITE8_MEMBER(isa8_pds_device::ppi_w)
{
if(!(offset & 0x01))
- m_ppi->write(space,offset/2,data);
+ m_ppi->write(offset/2,data);
}
void isa8_pds_device::device_start()