summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/astrocde.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-05-15 18:15:39 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-05-15 18:15:39 +0200
commit7fd817a1d637d1c7c40da14dade8f63460d1b3a4 (patch)
tree91569462245bc5610e430bab28b31421014b2c97 /src/mame/drivers/astrocde.cpp
parent761d726697721751ecbe1e972b7760dad5d11ff9 (diff)
various drivers: READ/WRITE macros removal (nw)
Diffstat (limited to 'src/mame/drivers/astrocde.cpp')
-rw-r--r--src/mame/drivers/astrocde.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/astrocde.cpp b/src/mame/drivers/astrocde.cpp
index e17eef39264..f3123075e8a 100644
--- a/src/mame/drivers/astrocde.cpp
+++ b/src/mame/drivers/astrocde.cpp
@@ -220,7 +220,7 @@ WRITE8_MEMBER(seawolf2_state::sound_2_w)// Port 41
*
*************************************/
-READ8_MEMBER(astrocde_state::input_mux_r)
+uint8_t astrocde_state::input_mux_r(offs_t offset)
{
return m_handle[offset & 3].read_safe(0xff);
}
@@ -395,7 +395,7 @@ WRITE8_MEMBER(tenpindx_state::lights_w)
*
*************************************/
-WRITE8_MEMBER(astrocde_state::votrax_speech_w)
+void astrocde_state::votrax_speech_w(uint8_t data)
{
m_votrax->inflection_w(data >> 6);
m_votrax->write(data & 0x3f);