summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bankp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bankp.h')
-rw-r--r--src/mame/includes/bankp.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/bankp.h b/src/mame/includes/bankp.h
index bd716183e49..b1750f95f6b 100644
--- a/src/mame/includes/bankp.h
+++ b/src/mame/includes/bankp.h
@@ -40,12 +40,12 @@ public:
int m_priority;
uint8_t m_nmi_mask;
- DECLARE_WRITE8_MEMBER(scroll_w);
- DECLARE_WRITE8_MEMBER(videoram_w);
- DECLARE_WRITE8_MEMBER(colorram_w);
- DECLARE_WRITE8_MEMBER(videoram2_w);
- DECLARE_WRITE8_MEMBER(colorram2_w);
- DECLARE_WRITE8_MEMBER(out_w);
+ void scroll_w(uint8_t data);
+ void videoram_w(offs_t offset, uint8_t data);
+ void colorram_w(offs_t offset, uint8_t data);
+ void videoram2_w(offs_t offset, uint8_t data);
+ void colorram2_w(offs_t offset, uint8_t data);
+ void out_w(uint8_t data);
TILE_GET_INFO_MEMBER(get_bg_tile_info);
TILE_GET_INFO_MEMBER(get_fg_tile_info);
virtual void machine_reset() override;