summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tk80.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
commitddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch)
treea70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/mame/drivers/tk80.cpp
parent333bff8de64dfaeb98134000412796b4fdef970b (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/mame/drivers/tk80.cpp')
-rw-r--r--src/mame/drivers/tk80.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/tk80.cpp b/src/mame/drivers/tk80.cpp
index f5a06825460..d36e449a3fd 100644
--- a/src/mame/drivers/tk80.cpp
+++ b/src/mame/drivers/tk80.cpp
@@ -69,11 +69,11 @@ public:
DECLARE_WRITE8_MEMBER(mikrolab_serial_w);
DECLARE_READ8_MEMBER(display_r);
DECLARE_WRITE8_MEMBER(display_w);
- UINT8 m_term_data;
- UINT8 m_keyb_press;
- UINT8 m_keyb_press_flag;
- UINT8 m_shift_press_flag;
- UINT8 m_ppi_portc;
+ uint8_t m_term_data;
+ uint8_t m_keyb_press;
+ uint8_t m_keyb_press_flag;
+ uint8_t m_shift_press_flag;
+ uint8_t m_ppi_portc;
required_device<cpu_device> m_maincpu;
};
@@ -195,7 +195,7 @@ READ8_MEMBER( tk80_state::key_matrix_r )
{
// PA0-7 keyscan in
- UINT8 data = 0xff;
+ uint8_t data = 0xff;
if (BIT(m_ppi_portc, 4))
data &= ioport("X0")->read();
@@ -211,7 +211,7 @@ READ8_MEMBER( tk80_state::nd80z_key_r )
{
// PA0-7 keyscan in
- UINT8 data = 0xff, row = m_ppi_portc & 7;
+ uint8_t data = 0xff, row = m_ppi_portc & 7;
if (row == 6)
data &= ioport("X0")->read();
else