summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/snk68_spr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/snk68_spr.cpp')
-rw-r--r--src/mame/video/snk68_spr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/snk68_spr.cpp b/src/mame/video/snk68_spr.cpp
index 7115713669b..a6b12e256db 100644
--- a/src/mame/video/snk68_spr.cpp
+++ b/src/mame/video/snk68_spr.cpp
@@ -74,7 +74,7 @@ void snk68_spr_device::device_reset()
{
}
-READ16_MEMBER(snk68_spr_device::spriteram_r)
+u16 snk68_spr_device::spriteram_r(offs_t offset)
{
// streetsj expects the MSB of every 32-bit word to be FF. Presumably RAM
// exists only for 3 bytes out of 4 and the fourth is unmapped.
@@ -84,7 +84,7 @@ READ16_MEMBER(snk68_spr_device::spriteram_r)
return m_spriteram[offset];
}
-WRITE16_MEMBER(snk68_spr_device::spriteram_w)
+void snk68_spr_device::spriteram_w(offs_t offset, u16 data, u16 mem_mask)
{
uint16_t newword = m_spriteram[offset];