summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/exidy440.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/exidy440.h')
-rw-r--r--src/mame/includes/exidy440.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/mame/includes/exidy440.h b/src/mame/includes/exidy440.h
index bd14408d774..2bc62bdfbc0 100644
--- a/src/mame/includes/exidy440.h
+++ b/src/mame/includes/exidy440.h
@@ -24,29 +24,29 @@ public:
m_screen(*this, "screen"),
m_palette(*this, "palette") { }
- required_shared_ptr<UINT8> m_imageram;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_scanline;
+ required_shared_ptr<uint8_t> m_imageram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_scanline;
required_device<cpu_device> m_maincpu;
required_device<exidy440_sound_device> m_custom;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
- UINT8 m_bank;
- const UINT8 *m_showdown_bank_data[2];
- INT8 m_showdown_bank_select;
- UINT8 m_showdown_bank_offset;
- UINT8 m_firq_vblank;
- UINT8 m_firq_beam;
- UINT8 m_topsecex_yscroll;
- UINT8 m_latched_x;
- std::unique_ptr<UINT8[]> m_local_videoram;
- std::unique_ptr<UINT8[]> m_local_paletteram;
- UINT8 m_firq_enable;
- UINT8 m_firq_select;
- UINT8 m_palettebank_io;
- UINT8 m_palettebank_vis;
+ uint8_t m_bank;
+ const uint8_t *m_showdown_bank_data[2];
+ int8_t m_showdown_bank_select;
+ uint8_t m_showdown_bank_offset;
+ uint8_t m_firq_vblank;
+ uint8_t m_firq_beam;
+ uint8_t m_topsecex_yscroll;
+ uint8_t m_latched_x;
+ std::unique_ptr<uint8_t[]> m_local_videoram;
+ std::unique_ptr<uint8_t[]> m_local_paletteram;
+ uint8_t m_firq_enable;
+ uint8_t m_firq_select;
+ uint8_t m_palettebank_io;
+ uint8_t m_palettebank_vis;
DECLARE_WRITE8_MEMBER(bankram_w);
DECLARE_READ8_MEMBER(exidy440_input_port_3_r);
DECLARE_READ8_MEMBER(sound_command_ack_r);
@@ -81,14 +81,14 @@ public:
DECLARE_VIDEO_START(topsecex);
void draw_sprites(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect, int scroll_offset, int check_collision);
void update_screen(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect, int scroll_offset, int check_collision);
- UINT32 screen_update_exidy440(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_topsecex(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_exidy440(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_topsecex(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(exidy440_vblank_interrupt);
TIMER_CALLBACK_MEMBER(delayed_sound_command_w);
TIMER_CALLBACK_MEMBER(beam_firq_callback);
TIMER_CALLBACK_MEMBER(collide_firq_callback);
void exidy440_update_firq();
- void exidy440_bank_select(UINT8 bank);
+ void exidy440_bank_select(uint8_t bank);
};
/*----------- defined in video/exidy440.c -----------*/