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/includes/aussiebyte.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/mame/includes/aussiebyte.h')
-rw-r--r-- | src/mame/includes/aussiebyte.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/mame/includes/aussiebyte.h b/src/mame/includes/aussiebyte.h index d410d4502c7..39b92367cdc 100644 --- a/src/mame/includes/aussiebyte.h +++ b/src/mame/includes/aussiebyte.h @@ -93,22 +93,22 @@ public: required_device<palette_device> m_palette; private: - UINT8 crt8002(UINT8 ac_ra, UINT8 ac_chr, UINT8 ac_attr, UINT16 ac_cnt, bool ac_curs); + uint8_t crt8002(uint8_t ac_ra, uint8_t ac_chr, uint8_t ac_attr, uint16_t ac_cnt, bool ac_curs); bool m_port15; // rom switched in (0), out (1) - UINT8 m_port17; - UINT8 m_port17_rdy; - UINT8 m_port19; - UINT8 m_port1a; // bank to switch to when write to port 15 happens - UINT8 m_port28; - UINT8 m_port34; - UINT8 m_port35; // byte to be written to vram or aram - UINT8 m_video_index; - UINT16 m_cnt; - UINT8 *m_p_videoram; - UINT8 *m_p_attribram; - const UINT8 *m_p_chargen; - UINT16 m_alpha_address; - UINT16 m_graph_address; + uint8_t m_port17; + uint8_t m_port17_rdy; + uint8_t m_port19; + uint8_t m_port1a; // bank to switch to when write to port 15 happens + uint8_t m_port28; + uint8_t m_port34; + uint8_t m_port35; // byte to be written to vram or aram + uint8_t m_video_index; + uint16_t m_cnt; + uint8_t *m_p_videoram; + uint8_t *m_p_attribram; + const uint8_t *m_p_chargen; + uint16_t m_alpha_address; + uint16_t m_graph_address; required_device<cpu_device> m_maincpu; required_device<z80ctc_device> m_ctc; required_device<z80dma_device> m_dma; |