summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/docastle.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-08 17:17:27 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-08 17:17:27 +0200
commit65d282d19ed5985d8e9925cdf5cb168e5f4aa09d (patch)
treecb0f2d561c22d547fe398839cbcfb36341512ad4 /src/mame/drivers/docastle.cpp
parentddc7ec4db26d6cc88330a96006643878dc42ce8c (diff)
drivers starting with c and d: completed read* and write* macros removal (nw)
Diffstat (limited to 'src/mame/drivers/docastle.cpp')
-rw-r--r--src/mame/drivers/docastle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/docastle.cpp b/src/mame/drivers/docastle.cpp
index 7215ecd1bfa..70bc9ca10e5 100644
--- a/src/mame/drivers/docastle.cpp
+++ b/src/mame/drivers/docastle.cpp
@@ -199,14 +199,14 @@ WRITE_LINE_MEMBER(docastle_state::idsoccer_adpcm_int)
}
}
-READ8_MEMBER(docastle_state::idsoccer_adpcm_status_r)
+uint8_t docastle_state::idsoccer_adpcm_status_r()
{
// this is wrong, but the samples work anyway!!
m_adpcm_status ^= 0x80;
return m_adpcm_status;
}
-WRITE8_MEMBER(docastle_state::idsoccer_adpcm_w)
+void docastle_state::idsoccer_adpcm_w(uint8_t data)
{
if (data & 0x80)
{