summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/skydiver.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/skydiver.h')
-rw-r--r--src/mame/includes/skydiver.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/skydiver.h b/src/mame/includes/skydiver.h
index 61d20dedae1..90a7889e73f 100644
--- a/src/mame/includes/skydiver.h
+++ b/src/mame/includes/skydiver.h
@@ -56,9 +56,9 @@ public:
private:
DECLARE_WRITE_LINE_MEMBER(nmion_w);
- DECLARE_WRITE8_MEMBER(videoram_w);
- DECLARE_READ8_MEMBER(wram_r);
- DECLARE_WRITE8_MEMBER(wram_w);
+ void videoram_w(offs_t offset, uint8_t data);
+ uint8_t wram_r(offs_t offset);
+ void wram_w(offs_t offset, uint8_t data);
DECLARE_WRITE_LINE_MEMBER(width_w);
DECLARE_WRITE_LINE_MEMBER(coin_lockout_w);
DECLARE_WRITE_LINE_MEMBER(start_lamp_1_w);
@@ -71,7 +71,7 @@ private:
DECLARE_WRITE_LINE_MEMBER(lamp_v_w);
DECLARE_WRITE_LINE_MEMBER(lamp_e_w);
DECLARE_WRITE_LINE_MEMBER(lamp_r_w);
- DECLARE_WRITE8_MEMBER(latch3_watchdog_w);
+ void latch3_watchdog_w(offs_t offset, uint8_t data);
TILE_GET_INFO_MEMBER(get_tile_info);