summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/spcforce.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/spcforce.h')
-rw-r--r--src/mame/includes/spcforce.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/spcforce.h b/src/mame/includes/spcforce.h
index fc572a6dbfa..f74a480d4c1 100644
--- a/src/mame/includes/spcforce.h
+++ b/src/mame/includes/spcforce.h
@@ -26,16 +26,16 @@ public:
required_device<sn76496_device> m_sn2;
required_device<sn76496_device> m_sn3;
- required_shared_ptr<UINT8> m_scrollram;
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_colorram;
+ required_shared_ptr<uint8_t> m_scrollram;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_colorram;
int m_sn76496_latch;
int m_sn76496_select;
int m_sn1_ready;
int m_sn2_ready;
int m_sn3_ready;
- UINT8 m_irq_mask;
+ uint8_t m_irq_mask;
DECLARE_WRITE8_MEMBER(SN76496_latch_w);
DECLARE_READ8_MEMBER(SN76496_select_r);
@@ -51,7 +51,7 @@ public:
virtual void machine_start() override;
DECLARE_PALETTE_INIT(spcforce);
- 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(vblank_irq);
};