summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/simpl156.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/simpl156.h')
-rw-r--r--src/mame/includes/simpl156.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/simpl156.h b/src/mame/includes/simpl156.h
index 7fc91654160..8a85b6c117c 100644
--- a/src/mame/includes/simpl156.h
+++ b/src/mame/includes/simpl156.h
@@ -31,13 +31,13 @@ public:
required_device<eeprom_serial_93cxx_device> m_eeprom;
required_device<okim6295_device> m_okimusic;
/* memory pointers */
- std::unique_ptr<UINT16[]> m_pf1_rowscroll;
- std::unique_ptr<UINT16[]> m_pf2_rowscroll;
- required_shared_ptr<UINT32> m_mainram;
- required_shared_ptr<UINT32> m_systemram;
+ std::unique_ptr<uint16_t[]> m_pf1_rowscroll;
+ std::unique_ptr<uint16_t[]> m_pf2_rowscroll;
+ required_shared_ptr<uint32_t> m_mainram;
+ required_shared_ptr<uint32_t> m_systemram;
optional_device<decospr_device> m_sprgen;
required_device<palette_device> m_palette;
- std::unique_ptr<UINT16[]> m_spriteram;
+ std::unique_ptr<uint16_t[]> m_spriteram;
size_t m_spriteram_size;
DECO16IC_BANK_CB_MEMBER(bank_callback);
DECOSPR_PRIORITY_CB_MEMBER(pri_callback);
@@ -63,6 +63,6 @@ public:
DECLARE_DRIVER_INIT(osman);
DECLARE_DRIVER_INIT(chainrec);
virtual void video_start() override;
- UINT32 screen_update_simpl156(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_simpl156(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(simpl156_vbl_interrupt);
};