summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/rollerg.h
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-13 18:21:50 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-13 18:21:50 +0200
commit25fae739bcf25723df1d6fb39c42f48c645d217f (patch)
tree42a33eb612424c01f0fa073ecf84a944023c5529 /src/mame/includes/rollerg.h
parent284f196df1c65a91eb38a5a9f31a2da7fb86a1ac (diff)
drivers starting with r: removed read and write macros (nw)
Diffstat (limited to 'src/mame/includes/rollerg.h')
-rw-r--r--src/mame/includes/rollerg.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/rollerg.h b/src/mame/includes/rollerg.h
index 24a8cfadf8e..a26c07dd43a 100644
--- a/src/mame/includes/rollerg.h
+++ b/src/mame/includes/rollerg.h
@@ -46,11 +46,11 @@ private:
required_device<k05324x_device> m_k053244;
required_device<k051316_device> m_k051316;
required_device<k053252_device> m_k053252;
- DECLARE_WRITE8_MEMBER(rollerg_0010_w);
- DECLARE_READ8_MEMBER(rollerg_k051316_r);
- DECLARE_WRITE8_MEMBER(soundirq_w);
- DECLARE_WRITE8_MEMBER(sound_arm_nmi_w);
- DECLARE_READ8_MEMBER(pip_r);
+ void rollerg_0010_w(uint8_t data);
+ uint8_t rollerg_k051316_r(offs_t offset);
+ void soundirq_w(uint8_t data);
+ void sound_arm_nmi_w(uint8_t data);
+ uint8_t pip_r();
DECLARE_WRITE_LINE_MEMBER(rollerg_irq_ack_w);
virtual void machine_start() override;
virtual void machine_reset() override;