summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/cpc/cpc_pds.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/cpc/cpc_pds.cpp')
-rw-r--r--src/devices/bus/cpc/cpc_pds.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/cpc/cpc_pds.cpp b/src/devices/bus/cpc/cpc_pds.cpp
index 841a7a1677b..0509ab866dc 100644
--- a/src/devices/bus/cpc/cpc_pds.cpp
+++ b/src/devices/bus/cpc/cpc_pds.cpp
@@ -61,10 +61,10 @@ void cpc_pds_device::device_reset()
READ8_MEMBER(cpc_pds_device::pio_r)
{
- return m_pio->read(space,offset);
+ return m_pio->read(offset);
}
WRITE8_MEMBER(cpc_pds_device::pio_w)
{
- m_pio->write(space,offset,data);
+ m_pio->write(offset,data);
}