summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/offtwall.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/offtwall.h')
-rw-r--r--src/mame/includes/offtwall.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/offtwall.h b/src/mame/includes/offtwall.h
index 6c25fd48750..6e317807fc9 100644
--- a/src/mame/includes/offtwall.h
+++ b/src/mame/includes/offtwall.h
@@ -34,11 +34,11 @@ public:
void init_offtwalc();
private:
- DECLARE_WRITE16_MEMBER(io_latch_w);
- DECLARE_READ16_MEMBER(bankswitch_r);
- DECLARE_READ16_MEMBER(bankrom_r);
- DECLARE_READ16_MEMBER(spritecache_count_r);
- DECLARE_READ16_MEMBER(unknown_verify_r);
+ void io_latch_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ uint16_t bankswitch_r(offs_t offset);
+ uint16_t bankrom_r(address_space &space, offs_t offset);
+ uint16_t spritecache_count_r(offs_t offset);
+ uint16_t unknown_verify_r(offs_t offset);
TILE_GET_INFO_MEMBER(get_playfield_tile_info);
uint32_t screen_update_offtwall(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void main_map(address_map &map);