summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/battlex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/battlex.h')
-rw-r--r--src/mame/includes/battlex.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/battlex.h b/src/mame/includes/battlex.h
index f38fc2606a1..b8ac7a1dee9 100644
--- a/src/mame/includes/battlex.h
+++ b/src/mame/includes/battlex.h
@@ -31,12 +31,12 @@ public:
uint8_t m_scroll_lsb;
uint8_t m_scroll_msb;
uint8_t m_starfield_enabled;
- DECLARE_WRITE8_MEMBER(battlex_palette_w);
- DECLARE_WRITE8_MEMBER(battlex_scroll_x_lsb_w);
- DECLARE_WRITE8_MEMBER(battlex_scroll_x_msb_w);
- DECLARE_WRITE8_MEMBER(battlex_scroll_starfield_w);
- DECLARE_WRITE8_MEMBER(battlex_videoram_w);
- DECLARE_WRITE8_MEMBER(battlex_flipscreen_w);
+ void battlex_palette_w(offs_t offset, uint8_t data);
+ void battlex_scroll_x_lsb_w(uint8_t data);
+ void battlex_scroll_x_msb_w(uint8_t data);
+ void battlex_scroll_starfield_w(uint8_t data);
+ void battlex_videoram_w(offs_t offset, uint8_t data);
+ void battlex_flipscreen_w(uint8_t data);
DECLARE_CUSTOM_INPUT_MEMBER(battlex_in0_b4_r);
void init_battlex();
TILE_GET_INFO_MEMBER(get_bg_tile_info);