summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/canyon.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/canyon.h')
-rw-r--r--src/mame/includes/canyon.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/canyon.h b/src/mame/includes/canyon.h
index 440db879b0d..f54b2002a85 100644
--- a/src/mame/includes/canyon.h
+++ b/src/mame/includes/canyon.h
@@ -44,15 +44,15 @@ public:
void canyon(machine_config &config);
protected:
- DECLARE_READ8_MEMBER(canyon_switches_r);
- DECLARE_READ8_MEMBER(canyon_options_r);
- DECLARE_WRITE8_MEMBER(output_latch_w);
- DECLARE_WRITE8_MEMBER(canyon_videoram_w);
+ uint8_t canyon_switches_r(offs_t offset);
+ uint8_t canyon_options_r(offs_t offset);
+ void output_latch_w(offs_t offset, uint8_t data);
+ void canyon_videoram_w(offs_t offset, uint8_t data);
TILE_GET_INFO_MEMBER(get_bg_tile_info);
void canyon_palette(palette_device &palette) const;
uint32_t screen_update_canyon(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- DECLARE_WRITE8_MEMBER(canyon_motor_w);
- DECLARE_WRITE8_MEMBER(canyon_explode_w);
+ void canyon_motor_w(offs_t offset, uint8_t data);
+ void canyon_explode_w(uint8_t data);
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
void draw_bombs( bitmap_ind16 &bitmap, const rectangle &cliprect );