diff options
Diffstat (limited to 'src/devices/cpu/tms1000/tms1100.cpp')
-rw-r--r-- | src/devices/cpu/tms1000/tms1100.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms1000/tms1100.cpp b/src/devices/cpu/tms1000/tms1100.cpp index 6ec5d71b727..7af1237a5ad 100644 --- a/src/devices/cpu/tms1000/tms1100.cpp +++ b/src/devices/cpu/tms1000/tms1100.cpp @@ -80,7 +80,7 @@ void tms1100_cpu_device::op_setr() // TMS1100 manual simply says that X must be less than 4 u8 index = BIT(m_x, m_x_bits - 1) << 4 | m_y; m_r = m_r | (1 << index); - m_write_r(m_r & m_r_mask); + write_r_output(m_r); } void tms1100_cpu_device::op_rstr() @@ -88,5 +88,5 @@ void tms1100_cpu_device::op_rstr() // RSTR: see SETR u8 index = BIT(m_x, m_x_bits - 1) << 4 | m_y; m_r = m_r & ~(1 << index); - m_write_r(m_r & m_r_mask); + write_r_output(m_r); } |