summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/bbc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/bbc.cpp')
-rw-r--r--src/mame/machine/bbc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/bbc.cpp b/src/mame/machine/bbc.cpp
index dd502d13294..cea8152afd2 100644
--- a/src/mame/machine/bbc.cpp
+++ b/src/mame/machine/bbc.cpp
@@ -718,13 +718,13 @@ WRITE8_MEMBER(bbc_state::bbcb_via_system_write_porta)
}
if (m_b1_speech_read == 0)
{
- if (m_tms) m_via_system_porta = m_tms->status_r(space, 0);
+ if (m_tms) m_via_system_porta = m_tms->status_r();
//logerror("Doing an unsafe read to the speech chip %d \n",m_via_system_porta);
}
if (m_b2_speech_write == 0)
{
//logerror("Doing an unsafe write to the speech chip %d \n",data);
- if (m_tms) m_tms->data_w(space, 0, m_via_system_porta);
+ if (m_tms) m_tms->data_w(m_via_system_porta);
}
if (m_b3_keyboard == 0)
{