summaryrefslogtreecommitdiffstats
path: root/src/devices/cpu/tms1000/tms1k_base.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms1000/tms1k_base.cpp')
-rw-r--r--src/devices/cpu/tms1000/tms1k_base.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/tms1000/tms1k_base.cpp b/src/devices/cpu/tms1000/tms1k_base.cpp
index ef5f41f0546..b8afaa75246 100644
--- a/src/devices/cpu/tms1000/tms1k_base.cpp
+++ b/src/devices/cpu/tms1000/tms1k_base.cpp
@@ -274,7 +274,7 @@ void tms1k_base_device::read_opcode()
// i/o handling
//-------------------------------------------------
-void tms1k_base_device::write_o_output(UINT8 index)
+void tms1k_base_device::write_o_output(uint8_t index)
{
// a hardcoded table is supported if the output pla is unknown
m_o_index = index;
@@ -282,7 +282,7 @@ void tms1k_base_device::write_o_output(UINT8 index)
m_write_o(0, m_o & m_o_mask, 0xffff);
}
-UINT8 tms1k_base_device::read_k_input()
+uint8_t tms1k_base_device::read_k_input()
{
// K1,2,4,8 (KC test pin is not emulated)
return m_read_k(0, 0xff) & 0xf;
@@ -343,7 +343,7 @@ void tms1k_base_device::op_call()
// CALL/CALLL: conditional call
if (m_status)
{
- UINT8 prev_pa = m_pa;
+ uint8_t prev_pa = m_pa;
if (m_clatch == 0)
{