summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/exprraid.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/exprraid.h')
-rw-r--r--src/mame/includes/exprraid.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/includes/exprraid.h b/src/mame/includes/exprraid.h
index 2f2740b4072..46a0b297eeb 100644
--- a/src/mame/includes/exprraid.h
+++ b/src/mame/includes/exprraid.h
@@ -63,17 +63,17 @@ private:
virtual void machine_reset() override;
virtual void video_start() override;
- DECLARE_WRITE8_MEMBER(exprraid_int_clear_w);
- DECLARE_READ8_MEMBER(exprraid_prot_status_r);
- DECLARE_READ8_MEMBER(exprraid_prot_data_r);
- DECLARE_WRITE8_MEMBER(exprraid_prot_data_w);
- DECLARE_READ8_MEMBER(vblank_r);
- DECLARE_WRITE8_MEMBER(exprraid_videoram_w);
- DECLARE_WRITE8_MEMBER(exprraid_colorram_w);
- DECLARE_WRITE8_MEMBER(exprraid_flipscreen_w);
- DECLARE_WRITE8_MEMBER(exprraid_bgselect_w);
- DECLARE_WRITE8_MEMBER(exprraid_scrollx_w);
- DECLARE_WRITE8_MEMBER(exprraid_scrolly_w);
+ void exprraid_int_clear_w(uint8_t data);
+ uint8_t exprraid_prot_status_r();
+ uint8_t exprraid_prot_data_r();
+ void exprraid_prot_data_w(uint8_t data);
+ uint8_t vblank_r();
+ void exprraid_videoram_w(offs_t offset, uint8_t data);
+ void exprraid_colorram_w(offs_t offset, uint8_t data);
+ void exprraid_flipscreen_w(uint8_t data);
+ void exprraid_bgselect_w(offs_t offset, uint8_t data);
+ void exprraid_scrollx_w(offs_t offset, uint8_t data);
+ void exprraid_scrolly_w(offs_t offset, uint8_t data);
TILE_GET_INFO_MEMBER(get_bg_tile_info);
TILE_GET_INFO_MEMBER(get_fg_tile_info);