summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/shootout.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/shootout.h')
-rw-r--r--src/mame/includes/shootout.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/shootout.h b/src/mame/includes/shootout.h
index eb3eba877fa..8664c6bcfca 100644
--- a/src/mame/includes/shootout.h
+++ b/src/mame/includes/shootout.h
@@ -49,12 +49,12 @@ private:
int m_ccnt_old_val;
void bankswitch_w(uint8_t data);
- DECLARE_READ8_MEMBER(sound_cpu_command_r);
- DECLARE_WRITE8_MEMBER(sound_cpu_command_w);
+ uint8_t sound_cpu_command_r();
+ void sound_cpu_command_w(uint8_t data);
void flipscreen_w(uint8_t data);
- DECLARE_WRITE8_MEMBER(coincounter_w);
- DECLARE_WRITE8_MEMBER(videoram_w);
- DECLARE_WRITE8_MEMBER(textram_w);
+ void coincounter_w(uint8_t data);
+ void videoram_w(offs_t offset, uint8_t data);
+ void textram_w(offs_t offset, uint8_t data);
virtual void machine_reset() override;
virtual void video_start() override;