summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mystston.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mystston.h')
-rw-r--r--src/mame/includes/mystston.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/mystston.h b/src/mame/includes/mystston.h
index 6e311814bba..53b38aca1bb 100644
--- a/src/mame/includes/mystston.h
+++ b/src/mame/includes/mystston.h
@@ -31,19 +31,19 @@ public:
m_palette(*this, "palette") { }
/* machine state */
- required_shared_ptr<UINT8> m_ay8910_data;
- required_shared_ptr<UINT8> m_ay8910_select;
+ required_shared_ptr<uint8_t> m_ay8910_data;
+ required_shared_ptr<uint8_t> m_ay8910_select;
/* video state */
tilemap_t *m_fg_tilemap;
tilemap_t *m_bg_tilemap;
emu_timer *m_interrupt_timer;
- required_shared_ptr<UINT8> m_bg_videoram;
- required_shared_ptr<UINT8> m_fg_videoram;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_paletteram;
- required_shared_ptr<UINT8> m_scroll;
- required_shared_ptr<UINT8> m_video_control;
+ required_shared_ptr<uint8_t> m_bg_videoram;
+ required_shared_ptr<uint8_t> m_fg_videoram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_paletteram;
+ required_shared_ptr<uint8_t> m_scroll;
+ required_shared_ptr<uint8_t> m_video_control;
DECLARE_WRITE8_MEMBER(irq_clear_w);
DECLARE_WRITE8_MEMBER(mystston_ay8910_select_w);
DECLARE_WRITE8_MEMBER(mystston_video_control_w);
@@ -52,7 +52,7 @@ public:
TILE_GET_INFO_MEMBER(get_fg_tile_info);
DECLARE_VIDEO_START(mystston);
DECLARE_VIDEO_RESET(mystston);
- UINT32 screen_update_mystston(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_mystston(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
TIMER_CALLBACK_MEMBER(interrupt_callback);
void set_palette();
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, gfx_element *gfx, int flip);