diff options
Diffstat (limited to 'src/mame/drivers/hh_amis2k.cpp')
-rw-r--r-- | src/mame/drivers/hh_amis2k.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/drivers/hh_amis2k.cpp b/src/mame/drivers/hh_amis2k.cpp index 1cf99b74180..e2a9f88427a 100644 --- a/src/mame/drivers/hh_amis2k.cpp +++ b/src/mame/drivers/hh_amis2k.cpp @@ -48,14 +48,14 @@ public: required_device<speaker_sound_device> m_speaker; required_device<timer_device> m_a12_decay_timer; - UINT8 m_d; - UINT16 m_a; - UINT8 m_q2; - UINT8 m_q3; + uint8_t m_d; + uint16_t m_a; + uint8_t m_q2; + uint8_t m_q3; - UINT16 m_display_state[0x10]; - UINT16 m_display_cache[0x10]; - UINT8 m_display_decay[0x100]; + uint16_t m_display_state[0x10]; + uint16_t m_display_cache[0x10]; + uint8_t m_display_decay[0x100]; DECLARE_WRITE8_MEMBER(write_d); DECLARE_WRITE16_MEMBER(write_a); @@ -110,7 +110,7 @@ inline bool wildfire_state::index_is_7segled(int index) void wildfire_state::display_update() { - UINT16 active_state[0x10]; + uint16_t active_state[0x10]; for (int i = 0; i < 0x10; i++) { @@ -292,7 +292,7 @@ enum lG = 0x01 }; -static const UINT8 wildfire_7seg_table[0x10] = +static const uint8_t wildfire_7seg_table[0x10] = { 0x7e, 0x30, 0x6d, 0x79, 0x33, 0x5b, 0x5f, 0x70, 0x7f, 0x7b, // 0-9 unaltered 0x77, // A -> unused? |