summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/goal92.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/goal92.cpp')
-rw-r--r--src/mame/drivers/goal92.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/goal92.cpp b/src/mame/drivers/goal92.cpp
index 7d80ec6c61d..ab34219d298 100644
--- a/src/mame/drivers/goal92.cpp
+++ b/src/mame/drivers/goal92.cpp
@@ -20,7 +20,7 @@
#include "speaker.h"
-WRITE16_MEMBER(goal92_state::goal92_sound_command_w)
+void goal92_state::goal92_sound_command_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
if (ACCESSING_BITS_8_15)
{
@@ -29,7 +29,7 @@ WRITE16_MEMBER(goal92_state::goal92_sound_command_w)
}
}
-READ16_MEMBER(goal92_state::goal92_inputs_r)
+uint16_t goal92_state::goal92_inputs_r(offs_t offset, uint16_t mem_mask)
{
switch(offset)
{
@@ -73,14 +73,14 @@ void goal92_state::goal92_map(address_map &map)
/* Sound CPU */
-WRITE8_MEMBER(goal92_state::adpcm_control_w)
+void goal92_state::adpcm_control_w(uint8_t data)
{
membank("bank1")->set_entry(data & 0x01);
m_msm->reset_w(data & 0x08);
}
-WRITE8_MEMBER(goal92_state::adpcm_data_w)
+void goal92_state::adpcm_data_w(uint8_t data)
{
m_msm5205next = data;
}