diff options
Diffstat (limited to 'src/mame/includes/punchout.h')
-rw-r--r-- | src/mame/includes/punchout.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/mame/includes/punchout.h b/src/mame/includes/punchout.h index 874b31678d1..93f562ce3b1 100644 --- a/src/mame/includes/punchout.h +++ b/src/mame/includes/punchout.h @@ -40,14 +40,14 @@ public: required_device<gfxdecode_device> m_gfxdecode; required_device<palette_device> m_palette; - required_shared_ptr<UINT8> m_bg_top_videoram; - required_shared_ptr<UINT8> m_spr1_ctrlram; - required_shared_ptr<UINT8> m_spr2_ctrlram; - required_shared_ptr<UINT8> m_palettebank; - required_shared_ptr<UINT8> m_spr1_videoram; - required_shared_ptr<UINT8> m_spr2_videoram; - required_shared_ptr<UINT8> m_bg_bot_videoram; - optional_shared_ptr<UINT8> m_armwrest_fg_videoram; + required_shared_ptr<uint8_t> m_bg_top_videoram; + required_shared_ptr<uint8_t> m_spr1_ctrlram; + required_shared_ptr<uint8_t> m_spr2_ctrlram; + required_shared_ptr<uint8_t> m_palettebank; + required_shared_ptr<uint8_t> m_spr1_videoram; + required_shared_ptr<uint8_t> m_spr2_videoram; + required_shared_ptr<uint8_t> m_bg_bot_videoram; + optional_shared_ptr<uint8_t> m_armwrest_fg_videoram; tilemap_t *m_bg_top_tilemap; tilemap_t *m_bg_bot_tilemap; @@ -56,7 +56,7 @@ public: tilemap_t *m_spr1_tilemap_flipx; tilemap_t *m_spr2_tilemap; - UINT8 m_nmi_mask; + uint8_t m_nmi_mask; DECLARE_WRITE8_MEMBER(punchout_2a03_reset_w); DECLARE_READ8_MEMBER(spunchout_exp_r); DECLARE_WRITE8_MEMBER(spunchout_exp_w); @@ -83,10 +83,10 @@ public: virtual void video_start() override; DECLARE_VIDEO_START(armwrest); DECLARE_MACHINE_RESET(spnchout); - UINT32 screen_update_punchout_top(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - UINT32 screen_update_punchout_bottom(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - UINT32 screen_update_armwrest_top(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - UINT32 screen_update_armwrest_bottom(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_punchout_top(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_punchout_bottom(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_armwrest_top(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_armwrest_bottom(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); INTERRUPT_GEN_MEMBER(vblank_irq); void draw_big_sprite(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect, int palette); void armwrest_draw_big_sprite(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect, int palette); |