summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/sg1000_exp/sk1100.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/sg1000_exp/sk1100.cpp')
-rw-r--r--src/devices/bus/sg1000_exp/sk1100.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/sg1000_exp/sk1100.cpp b/src/devices/bus/sg1000_exp/sk1100.cpp
index 91f077bdbfa..e23fe34caed 100644
--- a/src/devices/bus/sg1000_exp/sk1100.cpp
+++ b/src/devices/bus/sg1000_exp/sk1100.cpp
@@ -210,7 +210,7 @@ void sega_sk1100_device::device_start()
READ8_MEMBER(sega_sk1100_device::peripheral_r)
{
- return m_ppi->read(space, offset & 0x03);
+ return m_ppi->read(offset & 0x03);
}
@@ -220,7 +220,7 @@ READ8_MEMBER(sega_sk1100_device::peripheral_r)
WRITE8_MEMBER(sega_sk1100_device::peripheral_w)
{
- m_ppi->write(space, offset & 0x03, data);
+ m_ppi->write(offset & 0x03, data);
}