summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/abc1600.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/abc1600.cpp')
-rw-r--r--src/mame/drivers/abc1600.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/abc1600.cpp b/src/mame/drivers/abc1600.cpp
index 6d194a89b37..233a5d52207 100644
--- a/src/mame/drivers/abc1600.cpp
+++ b/src/mame/drivers/abc1600.cpp
@@ -634,12 +634,12 @@ WRITE8_MEMBER( abc1600_state::scc_w )
READ8_MEMBER( abc1600_state::cio_r )
{
- return m_cio->read(space, A2_A1);
+ return m_cio->read(A2_A1);
}
WRITE8_MEMBER( abc1600_state::cio_w )
{
- m_cio->write(space, A2_A1, data);
+ m_cio->write(A2_A1, data);
}
READ8_MEMBER( abc1600_state::cio_pa_r )