diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/devices/cpu/tms1000/tms1k_base.cpp | |
parent | 333bff8de64dfaeb98134000412796b4fdef970b (diff) |
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/devices/cpu/tms1000/tms1k_base.cpp')
-rw-r--r-- | src/devices/cpu/tms1000/tms1k_base.cpp | 6 |
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) { |