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/mcr.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/mcr.cpp')
-rw-r--r-- | src/mame/drivers/mcr.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/mcr.cpp b/src/mame/drivers/mcr.cpp index 9f02ea9d8b6..08979187d02 100644 --- a/src/mame/drivers/mcr.cpp +++ b/src/mame/drivers/mcr.cpp @@ -292,11 +292,11 @@ #include "dpoker.lh" -static UINT8 input_mux; -static UINT8 last_op4; +static uint8_t input_mux; +static uint8_t last_op4; -static UINT8 dpoker_coin_status; -static UINT8 dpoker_output; +static uint8_t dpoker_coin_status; +static uint8_t dpoker_output; @@ -411,7 +411,7 @@ READ8_MEMBER(mcr_state::dpoker_ip0_r) // d3: Coin-out Down // d6: Coin-drop Hit // d7: Coin-drop Release - UINT8 p0 = ioport("ssio:IP0")->read(); + uint8_t p0 = ioport("ssio:IP0")->read(); p0 |= (dpoker_coin_status >> 1 & 1); p0 ^= (p0 << 1 & 0x80) | dpoker_coin_status; return p0; @@ -642,7 +642,7 @@ WRITE8_MEMBER(mcr_state::dotron_op4_w) READ8_MEMBER(mcr_state::nflfoot_ip2_r) { /* bit 7 = J3-2 on IPU board = TXDA on SIO */ - UINT8 val = m_sio_txda << 7; + uint8_t val = m_sio_txda << 7; if (space.device().safe_pc() != 0x107) logerror("%04X:ip2_r = %02X\n", space.device().safe_pc(), val); |