summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/maygay1b.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/maygay1b.h')
-rw-r--r--src/mame/includes/maygay1b.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/maygay1b.h b/src/mame/includes/maygay1b.h
index 3f17990e5d2..bc5c31ef129 100644
--- a/src/mame/includes/maygay1b.h
+++ b/src/mame/includes/maygay1b.h
@@ -72,9 +72,9 @@ public:
required_device<stepper_device> m_reel4;
required_device<stepper_device> m_reel5;
required_device<meters_device> m_meters;
- optional_region_ptr<UINT8> m_oki_region;
+ optional_region_ptr<uint8_t> m_oki_region;
- UINT8 m_lamppos;
+ uint8_t m_lamppos;
int m_lamp_strobe;
int m_old_lamp_strobe;
int m_lamp_strobe2;
@@ -87,7 +87,7 @@ public:
int m_NMIENABLE;
int m_meter;
TIMER_DEVICE_CALLBACK_MEMBER( maygay1b_nmitimer_callback );
- UINT8 m_Lamps[256];
+ uint8_t m_Lamps[256];
int m_optic_pattern;
DECLARE_WRITE_LINE_MEMBER(reel0_optic_cb) { if (state) m_optic_pattern |= 0x01; else m_optic_pattern &= ~0x01; }
DECLARE_WRITE_LINE_MEMBER(reel1_optic_cb) { if (state) m_optic_pattern |= 0x02; else m_optic_pattern &= ~0x02; }
@@ -131,7 +131,7 @@ public:
DECLARE_WRITE8_MEMBER(main_to_mcu_0_w);
DECLARE_WRITE8_MEMBER(main_to_mcu_1_w);
- UINT8 m_main_to_mcu;
+ uint8_t m_main_to_mcu;
DECLARE_DRIVER_INIT(m1);
DECLARE_DRIVER_INIT(m1common);