summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/thedeep.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/thedeep.h')
-rw-r--r--src/mame/includes/thedeep.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/thedeep.h b/src/mame/includes/thedeep.h
index 341efdb0b3b..1a80666308b 100644
--- a/src/mame/includes/thedeep.h
+++ b/src/mame/includes/thedeep.h
@@ -32,20 +32,20 @@ public:
required_device<deco_mxc06_device> m_spritegen;
required_device<generic_latch_8_device> m_soundlatch;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_vram_0;
- required_shared_ptr<UINT8> m_vram_1;
- required_shared_ptr<UINT8> m_scroll;
- required_shared_ptr<UINT8> m_scroll2;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_vram_0;
+ required_shared_ptr<uint8_t> m_vram_1;
+ required_shared_ptr<uint8_t> m_scroll;
+ required_shared_ptr<uint8_t> m_scroll2;
int m_nmi_enable;
- UINT8 m_protection_command;
- UINT8 m_protection_data;
+ uint8_t m_protection_command;
+ uint8_t m_protection_data;
int m_protection_index;
int m_protection_irq;
tilemap_t *m_tilemap_0;
tilemap_t *m_tilemap_1;
- UINT8 m_mcu_p3_reg;
+ uint8_t m_mcu_p3_reg;
DECLARE_WRITE8_MEMBER(nmi_w);
DECLARE_WRITE8_MEMBER(sound_w);
@@ -70,7 +70,7 @@ public:
virtual void video_start() override;
DECLARE_PALETTE_INIT(thedeep);
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(mcu_irq);
TIMER_DEVICE_CALLBACK_MEMBER(interrupt);