diff options
Diffstat (limited to 'src/mame/includes/super80.h')
-rw-r--r-- | src/mame/includes/super80.h | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/src/mame/includes/super80.h b/src/mame/includes/super80.h index 3c5f3ad4be6..da9eead1427 100644 --- a/src/mame/includes/super80.h +++ b/src/mame/includes/super80.h @@ -75,36 +75,36 @@ public: DECLARE_PALETTE_INIT(super80m); DECLARE_QUICKLOAD_LOAD_MEMBER(super80); MC6845_UPDATE_ROW(crtc_update_row); - UINT32 screen_update_super80(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - UINT32 screen_update_super80v(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); - UINT32 screen_update_super80d(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - UINT32 screen_update_super80e(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - UINT32 screen_update_super80m(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_super80(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_super80v(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); + uint32_t screen_update_super80d(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_super80e(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_super80m(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); void screen_eof_super80m(screen_device &screen, bool state); TIMER_CALLBACK_MEMBER(super80_reset); TIMER_DEVICE_CALLBACK_MEMBER(timer_h); TIMER_DEVICE_CALLBACK_MEMBER(timer_k); TIMER_DEVICE_CALLBACK_MEMBER(timer_p); - UINT8 m_s_options; - UINT8 m_portf0; - UINT8 *m_p_videoram; - UINT8 *m_p_colorram; - UINT8 *m_p_pcgram; - UINT8 m_mc6845_cursor[16]; - UINT8 m_palette_index; + uint8_t m_s_options; + uint8_t m_portf0; + uint8_t *m_p_videoram; + uint8_t *m_p_colorram; + uint8_t *m_p_pcgram; + uint8_t m_mc6845_cursor[16]; + uint8_t m_palette_index; required_device<palette_device> m_palette; private: - UINT8 m_keylatch; - UINT8 m_cass_data[4]; - UINT8 m_int_sw; - UINT8 m_last_data; - UINT8 m_key_pressed; - UINT16 m_vidpg; - UINT8 m_current_charset; - const UINT8 *m_p_chargen; - UINT8 m_mc6845_reg[32]; - UINT8 m_mc6845_ind; - UINT8 *m_p_ram; + uint8_t m_keylatch; + uint8_t m_cass_data[4]; + uint8_t m_int_sw; + uint8_t m_last_data; + uint8_t m_key_pressed; + uint16_t m_vidpg; + uint8_t m_current_charset; + const uint8_t *m_p_chargen; + uint8_t m_mc6845_reg[32]; + uint8_t m_mc6845_ind; + uint8_t *m_p_ram; void mc6845_cursor_configure(); void super80_cassette_motor(bool data); required_device<cpu_device> m_maincpu; |