summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/qdrmfgp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/qdrmfgp.h')
-rw-r--r--src/mame/includes/qdrmfgp.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/qdrmfgp.h b/src/mame/includes/qdrmfgp.h
index 565b507933b..c7e0e2ab8ac 100644
--- a/src/mame/includes/qdrmfgp.h
+++ b/src/mame/includes/qdrmfgp.h
@@ -25,8 +25,8 @@ public:
}
required_device<cpu_device> m_maincpu;
- required_shared_ptr<UINT16> m_nvram;
- required_shared_ptr<UINT16> m_workram;
+ required_shared_ptr<uint16_t> m_nvram;
+ required_shared_ptr<uint16_t> m_workram;
required_device<k056832_device> m_k056832;
required_device<k054539_device> m_k054539;
required_device<k053252_device> m_k053252;
@@ -35,10 +35,10 @@ public:
required_ioport m_dsw_port;
required_device<palette_device> m_palette;
- UINT8 *m_sndram;
- UINT16 m_control;
- INT32 m_gp2_irq_control;
- INT32 m_pal;
+ uint8_t *m_sndram;
+ uint16_t m_control;
+ int32_t m_gp2_irq_control;
+ int32_t m_pal;
DECLARE_WRITE16_MEMBER(gp_control_w);
DECLARE_WRITE16_MEMBER(gp2_control_w);
@@ -59,7 +59,7 @@ public:
DECLARE_VIDEO_START(qdrmfgp);
DECLARE_MACHINE_START(qdrmfgp2);
DECLARE_VIDEO_START(qdrmfgp2);
- UINT32 screen_update_qdrmfgp(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_qdrmfgp(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(qdrmfgp2_interrupt);
TIMER_CALLBACK_MEMBER(gp2_timer_callback);
TIMER_DEVICE_CALLBACK_MEMBER(qdrmfgp_interrupt);