summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/special.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/special.h')
-rw-r--r--src/mame/includes/special.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/mame/includes/special.h b/src/mame/includes/special.h
index b3fb51a421e..aa2808959d3 100644
--- a/src/mame/includes/special.h
+++ b/src/mame/includes/special.h
@@ -84,18 +84,18 @@ public:
DECLARE_WRITE8_MEMBER(specialist_8255_porta_w);
DECLARE_WRITE8_MEMBER(specialist_8255_portb_w);
DECLARE_WRITE8_MEMBER(specialist_8255_portc_w);
- void specimx_set_bank(offs_t i, UINT8 data);
+ void specimx_set_bank(offs_t i, uint8_t data);
void erik_set_bank();
- std::unique_ptr<UINT8[]> m_specimx_colorram;
- UINT8 m_erik_color_1;
- UINT8 m_erik_color_2;
- UINT8 m_erik_background;
- UINT8 m_specimx_color;
+ std::unique_ptr<uint8_t[]> m_specimx_colorram;
+ uint8_t m_erik_color_1;
+ uint8_t m_erik_color_2;
+ uint8_t m_erik_background;
+ uint8_t m_specimx_color;
int m_specialist_8255_porta;
int m_specialist_8255_portb;
int m_specialist_8255_portc;
- UINT8 m_RR_register;
- UINT8 m_RC_register;
+ uint8_t m_RR_register;
+ uint8_t m_RC_register;
required_device<cpu_device> m_maincpu;
optional_device<i8255_device> m_ppi;
optional_device<fd1793_t> m_fdc;
@@ -103,7 +103,7 @@ public:
optional_device<pit8253_device> m_pit;
optional_device<cassette_image_device> m_cassette;
optional_device<ram_device> m_ram;
- optional_shared_ptr<UINT8> m_p_videoram;
+ optional_shared_ptr<uint8_t> m_p_videoram;
int m_drive;
DECLARE_DRIVER_INIT(erik);
DECLARE_DRIVER_INIT(special);
@@ -117,10 +117,10 @@ public:
DECLARE_MACHINE_RESET(specimx);
DECLARE_VIDEO_START(specimx);
DECLARE_PALETTE_INIT(specimx);
- UINT32 screen_update_special(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_erik(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_specialp(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_specimx(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_special(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_erik(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_specialp(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_specimx(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
DECLARE_WRITE_LINE_MEMBER(fdc_drq);
DECLARE_FLOPPY_FORMATS( specimx_floppy_formats );