summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/appoooh.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/appoooh.h')
-rw-r--r--src/mame/includes/appoooh.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/appoooh.h b/src/mame/includes/appoooh.h
index 88673f98215..31f5c587605 100644
--- a/src/mame/includes/appoooh.h
+++ b/src/mame/includes/appoooh.h
@@ -33,13 +33,13 @@ public:
void robowrese(machine_config &config);
protected:
- DECLARE_WRITE8_MEMBER(adpcm_w);
- DECLARE_WRITE8_MEMBER(scroll_w);
- DECLARE_WRITE8_MEMBER(fg_videoram_w);
- DECLARE_WRITE8_MEMBER(fg_colorram_w);
- DECLARE_WRITE8_MEMBER(bg_videoram_w);
- DECLARE_WRITE8_MEMBER(bg_colorram_w);
- DECLARE_WRITE8_MEMBER(out_w);
+ void adpcm_w(uint8_t data);
+ void scroll_w(uint8_t data);
+ void fg_videoram_w(offs_t offset, uint8_t data);
+ void fg_colorram_w(offs_t offset, uint8_t data);
+ void bg_videoram_w(offs_t offset, uint8_t data);
+ void bg_colorram_w(offs_t offset, uint8_t data);
+ void out_w(uint8_t data);
TILE_GET_INFO_MEMBER(get_fg_tile_info);
TILE_GET_INFO_MEMBER(get_bg_tile_info);
virtual void machine_start() override;