summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/jack.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/jack.h')
-rw-r--r--src/mame/includes/jack.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mame/includes/jack.h b/src/mame/includes/jack.h
index b9bd2d5b2c5..738e52c9b33 100644
--- a/src/mame/includes/jack.h
+++ b/src/mame/includes/jack.h
@@ -29,22 +29,22 @@ public:
/* device- and memory pointers */
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
- optional_shared_ptr<UINT8> m_spriteram;
- optional_shared_ptr<UINT8> m_scrollram;
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_colorram;
+ optional_shared_ptr<uint8_t> m_spriteram;
+ optional_shared_ptr<uint8_t> m_scrollram;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_colorram;
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;
/* video-related */
tilemap_t *m_bg_tilemap;
/* misc */
int m_timer_rate;
- UINT8 m_joinem_nmi_enable;
- UINT8 m_joinem_palette_bank;
+ uint8_t m_joinem_nmi_enable;
+ uint8_t m_joinem_palette_bank;
int m_question_address;
int m_question_rom;
int m_remap_address[16];
@@ -75,9 +75,9 @@ public:
DECLARE_MACHINE_START(joinem);
DECLARE_MACHINE_RESET(joinem);
- UINT32 screen_update_jack(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_striv(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_joinem(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_jack(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_striv(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_joinem(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
virtual void machine_start() override;
virtual void machine_reset() override;