summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gaelco2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gaelco2.cpp')
-rw-r--r--src/mame/drivers/gaelco2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/gaelco2.cpp b/src/mame/drivers/gaelco2.cpp
index aecd6603e40..b24d2709298 100644
--- a/src/mame/drivers/gaelco2.cpp
+++ b/src/mame/drivers/gaelco2.cpp
@@ -694,7 +694,7 @@ void gaelco2_state::play2000_map(address_map &map)
map(0xfe8000, 0xfeffff).ram().share("shareram"); /* Work RAM */
}
-READ16_MEMBER(gaelco2_state::srollnd_share_sim_r)
+u16 gaelco2_state::srollnd_share_sim_r(offs_t offset, u16 mem_mask)
{
uint16_t ret = m_shareram[offset];
@@ -745,7 +745,7 @@ READ16_MEMBER(gaelco2_state::srollnd_share_sim_r)
return ret;
}
-WRITE16_MEMBER(gaelco2_state::srollnd_share_sim_w)
+void gaelco2_state::srollnd_share_sim_w(offs_t offset, u16 data, u16 mem_mask)
{
if (m_maincpu->pc() != 0x552)
logerror("%s: srollnd_share_sim_w %04x: %04x (%04x)\n", machine().describe_context(), offset, data, mem_mask);