summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/mbc55x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/mbc55x.cpp')
-rw-r--r--src/mame/machine/mbc55x.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/mbc55x.cpp b/src/mame/machine/mbc55x.cpp
index de0155bbe3f..dc4852e3568 100644
--- a/src/mame/machine/mbc55x.cpp
+++ b/src/mame/machine/mbc55x.cpp
@@ -149,12 +149,12 @@ WRITE8_MEMBER( mbc55x_state::vram_page_w )
READ8_MEMBER(mbc55x_state::mbc55x_disk_r)
{
- return m_fdc->read(space, offset>>1);
+ return m_fdc->read(offset>>1);
}
WRITE8_MEMBER(mbc55x_state::mbc55x_disk_w)
{
- m_fdc->write(space, offset>>1, data);
+ m_fdc->write(offset>>1, data);
}