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/newbrain.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/newbrain.cpp')
-rw-r--r-- | src/mame/drivers/newbrain.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/newbrain.cpp b/src/mame/drivers/newbrain.cpp index 5dd4764501b..e1a775cb407 100644 --- a/src/mame/drivers/newbrain.cpp +++ b/src/mame/drivers/newbrain.cpp @@ -89,7 +89,7 @@ READ8_MEMBER( newbrain_state::mreq_r ) { bool romov = 1, raminh = 0; int exrm = 0; - UINT8 data = m_exp->mreq_r(space, offset, 0xff, romov, exrm, raminh); + uint8_t data = m_exp->mreq_r(space, offset, 0xff, romov, exrm, raminh); int rom0 = 1, rom1 = 1, rom2 = 1; int a15_14_13 = romov ? (offset >> 13) : exrm; @@ -155,7 +155,7 @@ WRITE8_MEMBER( newbrain_state::mreq_w ) READ8_MEMBER( newbrain_state::iorq_r ) { bool prtov = 0; - UINT8 data = m_exp->iorq_r(space, offset, 0xff, prtov); + uint8_t data = m_exp->iorq_r(space, offset, 0xff, prtov); if (!prtov) { @@ -305,7 +305,7 @@ READ8_MEMBER( newbrain_state::ust_a_r ) */ - UINT8 data = 0x5d; + uint8_t data = 0x5d; // powered up data |= m_pwrup << 1; @@ -339,7 +339,7 @@ READ8_MEMBER( newbrain_state::ust_b_r ) */ - UINT8 data = 0x5c; + uint8_t data = 0x5c; // V24 data |= m_rs232_v24->rxd_r(); @@ -372,7 +372,7 @@ READ8_MEMBER( newbrain_state::cop_in_r ) */ - UINT8 data = 0xe; + uint8_t data = 0xe; // keyboard data |= BIT(m_keydata, 2); @@ -400,7 +400,7 @@ READ8_MEMBER( newbrain_state::cop_g_r ) */ - UINT8 data = 0x1; + uint8_t data = 0x1; // keyboard data |= BIT(m_keydata, 1) << 1; |