diff options
author | 2022-07-30 21:12:46 +0200 | |
---|---|---|
committer | 2022-07-30 21:13:00 +0200 | |
commit | 77eff86988cb12c5f9dce121051b243b321bfca0 (patch) | |
tree | 336e953fc251cc60424030f54e5f2a0c03279a11 /src/devices/cpu/tms1000/tms0970.cpp | |
parent | e98145d9d8e6cec0c98883d5b5c887fd21d01d27 (diff) |
tms0270: fix problem with power off and ctl direction
Diffstat (limited to 'src/devices/cpu/tms1000/tms0970.cpp')
-rw-r--r-- | src/devices/cpu/tms1000/tms0970.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms1000/tms0970.cpp b/src/devices/cpu/tms1000/tms0970.cpp index be7a1c717f8..3463879a8bb 100644 --- a/src/devices/cpu/tms1000/tms0970.cpp +++ b/src/devices/cpu/tms1000/tms0970.cpp @@ -118,7 +118,7 @@ void tms0970_cpu_device::write_o_output(u8 index) { m_o_index = index; m_o = m_spla->read(index); - m_write_o(0, m_o & m_o_mask, 0xffff); + m_write_o(m_o & m_o_mask); } @@ -135,5 +135,5 @@ void tms0970_cpu_device::op_tdo() { // TDO: transfer digits to output write_o_output(m_a & 0x7); - m_write_r(0, m_r & m_r_mask, 0xffff); + m_write_r(m_r & m_r_mask); } |