diff options
Diffstat (limited to 'src/mame/includes/pbaction.h')
-rw-r--r-- | src/mame/includes/pbaction.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/pbaction.h b/src/mame/includes/pbaction.h index 26887d301ee..9ebb0ef2f44 100644 --- a/src/mame/includes/pbaction.h +++ b/src/mame/includes/pbaction.h @@ -27,12 +27,12 @@ public: m_decrypted_opcodes(*this, "decrypted_opcodes") { } /* memory pointers */ - required_shared_ptr<UINT8> m_videoram; - required_shared_ptr<UINT8> m_videoram2; - required_shared_ptr<UINT8> m_colorram; - required_shared_ptr<UINT8> m_colorram2; - required_shared_ptr<UINT8> m_work_ram; - required_shared_ptr<UINT8> m_spriteram; + required_shared_ptr<uint8_t> m_videoram; + required_shared_ptr<uint8_t> m_videoram2; + required_shared_ptr<uint8_t> m_colorram; + required_shared_ptr<uint8_t> m_colorram2; + required_shared_ptr<uint8_t> m_work_ram; + required_shared_ptr<uint8_t> m_spriteram; /* video-related */ tilemap_t *m_bg_tilemap; @@ -45,9 +45,9 @@ public: required_device<gfxdecode_device> m_gfxdecode; required_device<palette_device> m_palette; required_device<generic_latch_8_device> m_soundlatch; - optional_shared_ptr<UINT8> m_decrypted_opcodes; + optional_shared_ptr<uint8_t> m_decrypted_opcodes; - UINT8 m_nmi_mask; + uint8_t m_nmi_mask; DECLARE_WRITE8_MEMBER(pbaction_sh_command_w); DECLARE_WRITE8_MEMBER(nmi_mask_w); DECLARE_READ8_MEMBER(pbactio3_prot_kludge_r); @@ -63,7 +63,7 @@ public: virtual void machine_start() override; virtual void machine_reset() override; virtual void video_start() override; - UINT32 screen_update_pbaction(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_pbaction(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); INTERRUPT_GEN_MEMBER(pbaction_interrupt); INTERRUPT_GEN_MEMBER(vblank_irq); void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect ); |