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/machine/macpci.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/machine/macpci.cpp')
-rw-r--r-- | src/mame/machine/macpci.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/macpci.cpp b/src/mame/machine/macpci.cpp index a8f9f0e007f..eaa735c24d2 100644 --- a/src/mame/machine/macpci.cpp +++ b/src/mame/machine/macpci.cpp @@ -65,7 +65,7 @@ WRITE8_MEMBER(macpci_state::mac_via_out_b) READ16_MEMBER ( macpci_state::mac_via_r ) { - UINT16 data; + uint16_t data; offset >>= 8; offset &= 0x0f; @@ -97,7 +97,7 @@ WRITE16_MEMBER ( macpci_state::mac_via_w ) READ_LINE_MEMBER(macpci_state::mac_adb_via_in_cb2) { - UINT8 ret; + uint8_t ret; ret = m_cuda->get_via_data(); #if LOG_ADB printf("PPC: Read VIA_DATA %x\n", ret); @@ -169,7 +169,7 @@ READ32_MEMBER(macpci_state::mac_read_id) READ16_MEMBER ( macpci_state::mac_scc_r ) { scc8530_t *scc = space.machine().device<scc8530_t>("scc"); - UINT16 result; + uint16_t result; result = scc->reg_r(space, offset); return (result << 8) | result; |