summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/dday.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/dday.h')
-rw-r--r--src/mame/includes/dday.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/includes/dday.h b/src/mame/includes/dday.h
index 915ef446637..ed424d3bdad 100644
--- a/src/mame/includes/dday.h
+++ b/src/mame/includes/dday.h
@@ -65,14 +65,14 @@ private:
required_device<palette_device> m_palette;
required_device<ay8912_device> m_ay1;
- DECLARE_READ8_MEMBER(dday_countdown_timer_r);
- DECLARE_WRITE8_MEMBER(dday_bgvideoram_w);
- DECLARE_WRITE8_MEMBER(dday_fgvideoram_w);
- DECLARE_WRITE8_MEMBER(dday_textvideoram_w);
- DECLARE_WRITE8_MEMBER(dday_colorram_w);
- DECLARE_READ8_MEMBER(dday_colorram_r);
- DECLARE_WRITE8_MEMBER(dday_sl_control_w);
- DECLARE_WRITE8_MEMBER(dday_control_w);
+ uint8_t dday_countdown_timer_r();
+ void dday_bgvideoram_w(offs_t offset, uint8_t data);
+ void dday_fgvideoram_w(offs_t offset, uint8_t data);
+ void dday_textvideoram_w(offs_t offset, uint8_t data);
+ void dday_colorram_w(offs_t offset, uint8_t data);
+ uint8_t dday_colorram_r(offs_t offset);
+ void dday_sl_control_w(uint8_t data);
+ void dday_control_w(uint8_t data);
TILE_GET_INFO_MEMBER(get_bg_tile_info);
TILE_GET_INFO_MEMBER(get_fg_tile_info);
TILE_GET_INFO_MEMBER(get_text_tile_info);