summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/marineb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/marineb.h')
-rw-r--r--src/mame/includes/marineb.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/mame/includes/marineb.h b/src/mame/includes/marineb.h
index c96b4b91165..60324a8ec75 100644
--- a/src/mame/includes/marineb.h
+++ b/src/mame/includes/marineb.h
@@ -13,18 +13,18 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_colorram;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_colorram;
/* video-related */
tilemap_t *m_bg_tilemap;
tilemap_t *m_fg_tilemap;
- UINT8 m_palette_bank;
- UINT8 m_column_scroll;
- UINT8 m_flipscreen_x;
- UINT8 m_flipscreen_y;
- UINT8 m_marineb_active_low_flipscreen;
+ uint8_t m_palette_bank;
+ uint8_t m_column_scroll;
+ uint8_t m_flipscreen_x;
+ uint8_t m_flipscreen_y;
+ uint8_t m_marineb_active_low_flipscreen;
/* devices */
required_device<cpu_device> m_maincpu;
@@ -32,7 +32,7 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- UINT8 m_irq_mask;
+ uint8_t m_irq_mask;
DECLARE_WRITE8_MEMBER(irq_mask_w);
DECLARE_WRITE8_MEMBER(marineb_videoram_w);
DECLARE_WRITE8_MEMBER(marineb_colorram_w);
@@ -47,11 +47,11 @@ public:
virtual void video_start() override;
DECLARE_PALETTE_INIT(marineb);
DECLARE_MACHINE_RESET(springer);
- UINT32 screen_update_marineb(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_changes(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_springer(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_hoccer(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_hopprobo(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_marineb(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_changes(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_springer(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_hoccer(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_hopprobo(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(marineb_vblank_irq);
INTERRUPT_GEN_MEMBER(wanted_vblank_irq);
void set_tilemap_scrolly( int cols );