summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms1000/tms0270.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2022-08-06 19:10:30 +0200
committer hap <happppp@users.noreply.github.com>2022-08-06 19:10:42 +0200
commit6fe19f4032dbeb1b79bcedcf83878723a457f8c2 (patch)
tree0c339e0adabe86d5aee302f1ca88ec464ba031dc /src/devices/cpu/tms1000/tms0270.cpp
parent1c4c29aff67906829a1e1b48e16cf1a5d1ac16a0 (diff)
tms1000: add read/write prefix to k/r/o devcb names
Diffstat (limited to 'src/devices/cpu/tms1000/tms0270.cpp')
-rw-r--r--src/devices/cpu/tms1000/tms0270.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/tms1000/tms0270.cpp b/src/devices/cpu/tms1000/tms0270.cpp
index 9741da24903..1a90eba3da1 100644
--- a/src/devices/cpu/tms1000/tms0270.cpp
+++ b/src/devices/cpu/tms1000/tms0270.cpp
@@ -110,7 +110,7 @@ void tms0270_cpu_device::dynamic_output()
// standard O-output
if (m_o_latch != m_o_latch_prev)
{
- write_o_output(m_o_latch);
+ write_o_reg(m_o_latch);
m_o_latch_prev = m_o_latch;
}
}
@@ -118,7 +118,7 @@ void tms0270_cpu_device::dynamic_output()
// standard R-output
if (m_r != m_r_prev)
{
- m_write_r(m_r & m_r_mask);
+ write_r_output(m_r);
m_r_prev = m_r;
}
}