diff options
Diffstat (limited to 'src/mame/includes/mystwarr.h')
-rw-r--r-- | src/mame/includes/mystwarr.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/includes/mystwarr.h b/src/mame/includes/mystwarr.h index c0e35e0b61b..8a8b2b83d60 100644 --- a/src/mame/includes/mystwarr.h +++ b/src/mame/includes/mystwarr.h @@ -31,11 +31,11 @@ public: required_device<generic_latch_8_device> m_soundlatch; required_device<generic_latch_8_device> m_soundlatch2; required_device<generic_latch_8_device> m_soundlatch3; - required_shared_ptr<UINT16> m_gx_workram; - optional_shared_ptr<UINT16> m_spriteram; - std::unique_ptr<UINT8[]> m_decoded; + required_shared_ptr<uint16_t> m_gx_workram; + optional_shared_ptr<uint16_t> m_spriteram; + std::unique_ptr<uint8_t[]> m_decoded; - UINT8 m_mw_irq_control; + uint8_t m_mw_irq_control; int m_cur_sound_region; int m_layer_colorbase[6]; int m_oinprion; @@ -47,10 +47,10 @@ public: int m_roz_enable; int m_roz_rombank; tilemap_t *m_ult_936_tilemap; - UINT16 m_clip; + uint16_t m_clip; - UINT8 m_sound_ctrl; - UINT8 m_sound_nmi_clk; + uint8_t m_sound_ctrl; + uint8_t m_sound_nmi_clk; DECLARE_READ16_MEMBER(eeprom_r); DECLARE_WRITE16_MEMBER(mweeprom_w); @@ -94,10 +94,10 @@ public: DECLARE_VIDEO_START(gaiapols); DECLARE_MACHINE_RESET(martchmp); DECLARE_VIDEO_START(martchmp); - UINT32 screen_update_mystwarr(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); - UINT32 screen_update_metamrph(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); - UINT32 screen_update_dadandrn(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); - UINT32 screen_update_martchmp(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); + uint32_t screen_update_mystwarr(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); + uint32_t screen_update_metamrph(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); + uint32_t screen_update_dadandrn(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); + uint32_t screen_update_martchmp(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); INTERRUPT_GEN_MEMBER(ddd_interrupt); DECLARE_WRITE_LINE_MEMBER(k054539_nmi_gen); TIMER_DEVICE_CALLBACK_MEMBER(mystwarr_interrupt); |