summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tecmo16.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tecmo16.h')
-rw-r--r--src/mame/includes/tecmo16.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mame/includes/tecmo16.h b/src/mame/includes/tecmo16.h
index aa924f59b8a..bddd55d8f96 100644
--- a/src/mame/includes/tecmo16.h
+++ b/src/mame/includes/tecmo16.h
@@ -68,18 +68,18 @@ private:
uint16_t m_scroll_char_x_w;
uint16_t m_scroll_char_y_w;
- DECLARE_WRITE16_MEMBER(videoram_w);
- DECLARE_WRITE16_MEMBER(colorram_w);
- DECLARE_WRITE16_MEMBER(videoram2_w);
- DECLARE_WRITE16_MEMBER(colorram2_w);
- DECLARE_WRITE16_MEMBER(charram_w);
- DECLARE_WRITE16_MEMBER(flipscreen_w);
- DECLARE_WRITE16_MEMBER(scroll_x_w);
- DECLARE_WRITE16_MEMBER(scroll_y_w);
- DECLARE_WRITE16_MEMBER(scroll2_x_w);
- DECLARE_WRITE16_MEMBER(scroll2_y_w);
- DECLARE_WRITE16_MEMBER(scroll_char_x_w);
- DECLARE_WRITE16_MEMBER(scroll_char_y_w);
+ void videoram_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ void colorram_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ void videoram2_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ void colorram2_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ void charram_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ void flipscreen_w(uint16_t data);
+ void scroll_x_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ void scroll_y_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ void scroll2_x_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ void scroll2_y_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ void scroll_char_x_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ void scroll_char_y_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
TILE_GET_INFO_MEMBER(fg_get_tile_info);
TILE_GET_INFO_MEMBER(bg_get_tile_info);