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/abc1600.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/abc1600.cpp')
-rw-r--r-- | src/mame/drivers/abc1600.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/abc1600.cpp b/src/mame/drivers/abc1600.cpp index 4a2f71fc2bc..0fb1e911ae1 100644 --- a/src/mame/drivers/abc1600.cpp +++ b/src/mame/drivers/abc1600.cpp @@ -102,10 +102,10 @@ enum READ8_MEMBER( abc1600_state::bus_r ) { - UINT8 data = 0; + uint8_t data = 0; // card select pulse - UINT8 cs = (m_cs7 << 7) | ((offset >> 5) & 0x3f); + uint8_t cs = (m_cs7 << 7) | ((offset >> 5) & 0x3f); m_bus0i->cs_w(cs); m_bus0x->cs_w(cs); @@ -244,7 +244,7 @@ READ8_MEMBER( abc1600_state::bus_r ) WRITE8_MEMBER( abc1600_state::bus_w ) { - UINT8 cs = (m_cs7 << 7) | ((offset >> 5) & 0x3f); + uint8_t cs = (m_cs7 << 7) | ((offset >> 5) & 0x3f); m_bus0i->cs_w(cs); m_bus0x->cs_w(cs); @@ -632,7 +632,7 @@ READ8_MEMBER( abc1600_state::cio_pa_r ) */ - UINT8 data = 0; + uint8_t data = 0; data |= m_bus2->irq_r(); data |= m_bus1->irq_r() << 1; @@ -663,7 +663,7 @@ READ8_MEMBER( abc1600_state::cio_pb_r ) */ - UINT8 data = 0; + uint8_t data = 0; data |= !m_sysscc << 5; data |= !m_sysfs << 6; @@ -711,7 +711,7 @@ READ8_MEMBER( abc1600_state::cio_pc_r ) */ - UINT8 data = 0x0d; + uint8_t data = 0x0d; // data in data |= (m_rtc->dio_r() || m_nvram->do_r()) << 1; |