summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bbc/tube/tube_zep100.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/bbc/tube/tube_zep100.cpp')
-rw-r--r--src/devices/bus/bbc/tube/tube_zep100.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/bbc/tube/tube_zep100.cpp b/src/devices/bus/bbc/tube/tube_zep100.cpp
index 2096019c671..e7f223a992f 100644
--- a/src/devices/bus/bbc/tube/tube_zep100.cpp
+++ b/src/devices/bus/bbc/tube/tube_zep100.cpp
@@ -177,14 +177,14 @@ READ8_MEMBER(bbc_tube_zep100_device::io_r)
if (!machine().side_effects_disabled())
m_rom_enabled = !BIT(offset, 2);
- data = m_ppi->read(space, offset & 0x03);
+ data = m_ppi->read(offset & 0x03);
return data;
}
WRITE8_MEMBER(bbc_tube_zep100_device::io_w)
{
- m_ppi->write(space, offset & 0x03, data);
+ m_ppi->write(offset & 0x03, data);
}