diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/mame/drivers/ql.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/mame/drivers/ql.cpp')
-rw-r--r-- | src/mame/drivers/ql.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/ql.cpp b/src/mame/drivers/ql.cpp index e359395d530..00a6e144564 100644 --- a/src/mame/drivers/ql.cpp +++ b/src/mame/drivers/ql.cpp @@ -181,7 +181,7 @@ public: int m_extintl; // IPC - UINT8 m_keylatch; + uint8_t m_keylatch; int m_ipl; int m_comdata_to_ipc; int m_baudx4; @@ -203,7 +203,7 @@ public: READ8_MEMBER( ql_state::read ) { - UINT8 data = 0; + uint8_t data = 0; int cart_romoeh = 0; int exp_romoeh = 0; @@ -369,7 +369,7 @@ READ8_MEMBER( ql_state::ipc_port2_r ) */ - UINT8 data = 0; + uint8_t data = 0; // SER2 serial data input data |= m_ser2->rxd_r(); @@ -462,7 +462,7 @@ READ8_MEMBER( ql_state::ipc_bus_r ) */ - UINT8 data = 0; + uint8_t data = 0; if (BIT(m_keylatch, 0)) data |= m_y[0]->read() | m_joy[0]->read(); if (BIT(m_keylatch, 1)) data |= m_y[1]->read() | m_joy[1]->read(); |