summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/bottom9.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/bottom9.cpp')
-rw-r--r--src/mame/drivers/bottom9.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/bottom9.cpp b/src/mame/drivers/bottom9.cpp
index 05d8b46fd89..1f9af814329 100644
--- a/src/mame/drivers/bottom9.cpp
+++ b/src/mame/drivers/bottom9.cpp
@@ -38,12 +38,12 @@ READ8_MEMBER(bottom9_state::k052109_051960_r)
if (offset >= 0x3800 && offset < 0x3808)
return m_k051960->k051937_r(offset - 0x3800);
else if (offset < 0x3c00)
- return m_k052109->read(space, offset);
+ return m_k052109->read(offset);
else
return m_k051960->k051960_r(offset - 0x3c00);
}
else
- return m_k052109->read(space, offset);
+ return m_k052109->read(offset);
}
WRITE8_MEMBER(bottom9_state::k052109_051960_w)
@@ -51,7 +51,7 @@ WRITE8_MEMBER(bottom9_state::k052109_051960_w)
if (offset >= 0x3800 && offset < 0x3808)
m_k051960->k051937_w(offset - 0x3800, data);
else if (offset < 0x3c00)
- m_k052109->write(space, offset, data);
+ m_k052109->write(offset, data);
else
m_k051960->k051960_w(offset - 0x3c00, data);
}