summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/trackfld.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/trackfld.h')
-rw-r--r--src/mame/includes/trackfld.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mame/includes/trackfld.h b/src/mame/includes/trackfld.h
index bac83ad0c3e..32886c2f751 100644
--- a/src/mame/includes/trackfld.h
+++ b/src/mame/includes/trackfld.h
@@ -27,12 +27,12 @@ public:
m_palette(*this, "palette") { }
/* memory pointers */
- required_shared_ptr<UINT8> m_spriteram2;
- required_shared_ptr<UINT8> m_scroll;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_scroll2;
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_colorram;
+ required_shared_ptr<uint8_t> m_spriteram2;
+ required_shared_ptr<uint8_t> m_scroll;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_scroll2;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_colorram;
/* devices */
required_device<cpu_device> m_maincpu;
@@ -49,8 +49,8 @@ public:
int m_old_gfx_bank; // needed by atlantol
int m_sprites_gfx_banked;
- UINT8 m_irq_mask;
- UINT8 m_yieartf_nmi_mask;
+ uint8_t m_irq_mask;
+ uint8_t m_yieartf_nmi_mask;
DECLARE_WRITE8_MEMBER(coin_w);
DECLARE_WRITE8_MEMBER(questions_bank_w);
DECLARE_WRITE8_MEMBER(irq_mask_w);
@@ -69,7 +69,7 @@ public:
DECLARE_DRIVER_INIT(mastkin);
DECLARE_DRIVER_INIT(trackfldnz);
- UINT8 m_SN76496_latch;
+ uint8_t m_SN76496_latch;
DECLARE_WRITE8_MEMBER( konami_SN76496_latch_w ) { m_SN76496_latch = data; };
DECLARE_WRITE8_MEMBER( konami_SN76496_w ) { m_sn->write(space, offset, m_SN76496_latch); };
TILE_GET_INFO_MEMBER(get_bg_tile_info);
@@ -78,7 +78,7 @@ public:
DECLARE_VIDEO_START(trackfld);
DECLARE_PALETTE_INIT(trackfld);
DECLARE_VIDEO_START(atlantol);
- UINT32 screen_update_trackfld(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_trackfld(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(vblank_irq);
INTERRUPT_GEN_MEMBER(vblank_nmi);
INTERRUPT_GEN_MEMBER(yieartf_timer_irq);