summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/midway.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/midway.cpp')
-rw-r--r--src/mame/audio/midway.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/midway.cpp b/src/mame/audio/midway.cpp
index 11ab65620e8..b12adc67b59 100644
--- a/src/mame/audio/midway.cpp
+++ b/src/mame/audio/midway.cpp
@@ -879,7 +879,7 @@ WRITE8_MEMBER(midway_squawk_n_talk_device::portb2_w)
// write strobe -- pass the current command to the TMS5200
if (((data ^ m_tms_strobes) & 0x02) && !(data & 0x02))
{
- m_tms5200->data_w(space, offset, m_tms_command);
+ m_tms5200->data_w(m_tms_command);
// DoT expects the ready line to transition on a command/write here, so we oblige
m_pia1->ca2_w(1);
@@ -889,7 +889,7 @@ WRITE8_MEMBER(midway_squawk_n_talk_device::portb2_w)
// read strobe -- read the current status from the TMS5200
else if (((data ^ m_tms_strobes) & 0x01) && !(data & 0x01))
{
- m_pia1->write_porta(m_tms5200->status_r(space, offset));
+ m_pia1->write_porta(m_tms5200->status_r());
// DoT expects the ready line to transition on a command/write here, so we oblige
m_pia1->ca2_w(1);