summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/duet16.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/duet16.cpp')
-rw-r--r--src/mame/drivers/duet16.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/duet16.cpp b/src/mame/drivers/duet16.cpp
index a66c507484d..6d6a5a3c3f2 100644
--- a/src/mame/drivers/duet16.cpp
+++ b/src/mame/drivers/duet16.cpp
@@ -94,12 +94,12 @@ void duet16_state::machine_reset()
READ8_MEMBER(duet16_state::pic_r)
{
- return m_pic->read(space, offset ^ 1, mem_mask);
+ return m_pic->read(offset ^ 1);
}
WRITE8_MEMBER(duet16_state::pic_w)
{
- m_pic->write(space, offset ^ 1, data);
+ m_pic->write(offset ^ 1, data);
}
WRITE8_MEMBER(duet16_state::fdcctrl_w)