summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/battlane.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/battlane.h')
-rw-r--r--src/mame/includes/battlane.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/includes/battlane.h b/src/mame/includes/battlane.h
index 25103c5057a..742e73e802b 100644
--- a/src/mame/includes/battlane.h
+++ b/src/mame/includes/battlane.h
@@ -37,14 +37,14 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- DECLARE_WRITE8_MEMBER(battlane_cpu_command_w);
- DECLARE_WRITE8_MEMBER(battlane_palette_w);
- DECLARE_WRITE8_MEMBER(battlane_scrollx_w);
- DECLARE_WRITE8_MEMBER(battlane_scrolly_w);
- DECLARE_WRITE8_MEMBER(battlane_tileram_w);
- DECLARE_WRITE8_MEMBER(battlane_spriteram_w);
- DECLARE_WRITE8_MEMBER(battlane_bitmap_w);
- DECLARE_WRITE8_MEMBER(battlane_video_ctrl_w);
+ void battlane_cpu_command_w(uint8_t data);
+ void battlane_palette_w(offs_t offset, uint8_t data);
+ void battlane_scrollx_w(uint8_t data);
+ void battlane_scrolly_w(uint8_t data);
+ void battlane_tileram_w(offs_t offset, uint8_t data);
+ void battlane_spriteram_w(offs_t offset, uint8_t data);
+ void battlane_bitmap_w(offs_t offset, uint8_t data);
+ void battlane_video_ctrl_w(uint8_t data);
TILE_GET_INFO_MEMBER(get_tile_info_bg);
TILEMAP_MAPPER_MEMBER(battlane_tilemap_scan_rows_2x2);
virtual void machine_start() override;