summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/zexall.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/zexall.cpp')
-rw-r--r--src/mame/drivers/zexall.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/zexall.cpp b/src/mame/drivers/zexall.cpp
index b6c9b60defc..5c09a93d38c 100644
--- a/src/mame/drivers/zexall.cpp
+++ b/src/mame/drivers/zexall.cpp
@@ -99,7 +99,7 @@ READ8_MEMBER( zexall_state::output_ack_r )
// spit out the byte in out_byte if out_req is not equal to out_req_last
if (m_out_req != m_out_req_last)
{
- m_terminal->write(space, 0, m_out_data);
+ m_terminal->write(m_out_data);
m_out_req_last = m_out_req;
m_out_ack++;
}