summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/x68k.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/x68k.cpp')
-rw-r--r--src/mame/drivers/x68k.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/x68k.cpp b/src/mame/drivers/x68k.cpp
index 092cf208d03..a3158250267 100644
--- a/src/mame/drivers/x68k.cpp
+++ b/src/mame/drivers/x68k.cpp
@@ -831,12 +831,12 @@ READ16_MEMBER(x68k_state::sysport_r)
WRITE16_MEMBER(x68k_state::ppi_w)
{
- m_ppi->write(space,offset & 0x03,data);
+ m_ppi->write(offset & 0x03,data);
}
READ16_MEMBER(x68k_state::ppi_r)
{
- return m_ppi->read(space,offset & 0x03);
+ return m_ppi->read(offset & 0x03);
}