diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/devices/cpu/alto2/a2hw.h | |
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/devices/cpu/alto2/a2hw.h')
-rw-r--r-- | src/devices/cpu/alto2/a2hw.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/alto2/a2hw.h b/src/devices/cpu/alto2/a2hw.h index 49d20ff5e30..18accb36c23 100644 --- a/src/devices/cpu/alto2/a2hw.h +++ b/src/devices/cpu/alto2/a2hw.h @@ -12,10 +12,10 @@ #define _A2HW_H_ //! miscellaneous hardware registers in the memory mapped I/O range struct { - UINT16 eia; //!< the EIA port at 0177001 - UINT16 utilout; //!< the UTILOUT port at 0177016 (active-low outputs) - UINT16 xbus[4]; //!< the XBUS port at 0177020 to 0177023 - UINT16 utilin; //!< the UTILIN port at 0177030 to 0177033 (same value on all addresses) + uint16_t eia; //!< the EIA port at 0177001 + uint16_t utilout; //!< the UTILOUT port at 0177016 (active-low outputs) + uint16_t xbus[4]; //!< the XBUS port at 0177020 to 0177023 + uint16_t utilin; //!< the UTILIN port at 0177030 to 0177033 (same value on all addresses) } m_hw; DECLARE_READ16_MEMBER ( pprdy_r ); //!< read UTILIN[0] printer paper ready bit |