summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mpu3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mpu3.cpp')
-rw-r--r--src/mame/drivers/mpu3.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/mpu3.cpp b/src/mame/drivers/mpu3.cpp
index c4a811eb4c8..6e1c005ff64 100644
--- a/src/mame/drivers/mpu3.cpp
+++ b/src/mame/drivers/mpu3.cpp
@@ -803,12 +803,12 @@ TIMER_DEVICE_CALLBACK_MEMBER(mpu3_state::ic10_callback)
}
WRITE8_MEMBER(mpu3_state::mpu3ptm_w)
{
- m_ptm2->write(space, offset >>2,data);//((offset & 0x1f) >>2),data);
+ m_ptm2->write(offset >>2,data);//((offset & 0x1f) >>2),data);
}
READ8_MEMBER(mpu3_state::mpu3ptm_r)
{
- return m_ptm2->read(space, offset >>2);
+ return m_ptm2->read(offset >>2);
}
void mpu3_state::mpu3_basemap(address_map &map)