summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/route16.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/route16.h')
-rw-r--r--src/mame/includes/route16.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/route16.h b/src/mame/includes/route16.h
index 32eb59800b6..93dcccbb0af 100644
--- a/src/mame/includes/route16.h
+++ b/src/mame/includes/route16.h
@@ -15,16 +15,16 @@ public:
optional_device<sn76477_device> m_sn;
- required_shared_ptr<UINT8> m_sharedram;
- required_shared_ptr<UINT8> m_videoram1;
- required_shared_ptr<UINT8> m_videoram2;
+ required_shared_ptr<uint8_t> m_sharedram;
+ required_shared_ptr<uint8_t> m_videoram1;
+ required_shared_ptr<uint8_t> m_videoram2;
required_device<palette_device> m_palette;
- UINT8 m_ttmahjng_port_select;
+ uint8_t m_ttmahjng_port_select;
int m_speakres_vrx;
- UINT8 m_flipscreen;
- UINT8 m_palette_1;
- UINT8 m_palette_2;
+ uint8_t m_flipscreen;
+ uint8_t m_palette_1;
+ uint8_t m_palette_2;
DECLARE_WRITE8_MEMBER(out0_w);
DECLARE_WRITE8_MEMBER(out1_w);
@@ -43,6 +43,6 @@ public:
DECLARE_MACHINE_START(ttmahjng);
virtual void video_start() override;
- UINT32 screen_update_route16(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_ttmahjng(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_route16(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_ttmahjng(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
};