summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/starfire.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/starfire.h')
-rw-r--r--src/mame/includes/starfire.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/starfire.h b/src/mame/includes/starfire.h
index 705b34c2789..7a2d5774315 100644
--- a/src/mame/includes/starfire.h
+++ b/src/mame/includes/starfire.h
@@ -16,7 +16,7 @@ public:
starfire_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag) { }
- read8_space_func m_input_read;
+ read8_delegate m_input_read;
UINT8 m_fireone_select;
@@ -30,6 +30,10 @@ public:
emu_timer* m_scanline_timer;
bitmap_rgb32 m_starfire_screen;
+ DECLARE_WRITE8_MEMBER(starfire_scratch_w);
+ DECLARE_READ8_MEMBER(starfire_scratch_r);
+ DECLARE_READ8_MEMBER(starfire_input_r);
+ DECLARE_READ8_MEMBER(fireone_input_r);
};
/*----------- defined in video/starfire.c -----------*/