summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99/peb/spchsyn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti99/peb/spchsyn.cpp')
-rw-r--r--src/devices/bus/ti99/peb/spchsyn.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ti99/peb/spchsyn.cpp b/src/devices/bus/ti99/peb/spchsyn.cpp
index 233f8d58e4d..0f10eea1f33 100644
--- a/src/devices/bus/ti99/peb/spchsyn.cpp
+++ b/src/devices/bus/ti99/peb/spchsyn.cpp
@@ -61,7 +61,7 @@ READ8Z_MEMBER( ti_speech_synthesizer_device::readz )
if (m_sbe)
{
- *value = m_vsp->status_r(space, 0, 0xff) & 0xff;
+ *value = m_vsp->status_r() & 0xff;
LOGMASKED(LOG_MEM, "read value = %02x\n", *value);
// We should clear the lines at this point. The TI-99/4A clears the
// lines by setting the address bus to a different value, but the
@@ -81,7 +81,7 @@ WRITE8_MEMBER( ti_speech_synthesizer_device::write )
if (m_sbe)
{
LOGMASKED(LOG_MEM, "write value = %02x\n", data);
- m_vsp->data_w(space, 0, data);
+ m_vsp->data_w(data);
// Note that we must NOT clear the lines here. Find the lines in the
// READY callback below.
}