summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/taotaido.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/taotaido.cpp')
-rw-r--r--src/mame/video/taotaido.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/taotaido.cpp b/src/mame/video/taotaido.cpp
index 95e1a89fe2a..30e98049483 100644
--- a/src/mame/video/taotaido.cpp
+++ b/src/mame/video/taotaido.cpp
@@ -15,7 +15,7 @@ zooming might be wrong (only used on title logo?)
#include "screen.h"
/* sprite tile codes 0x4000 - 0x7fff get remapped according to the content of these registers */
-WRITE8_MEMBER(taotaido_state::spritebank_w)
+void taotaido_state::spritebank_w(offs_t offset, uint8_t data)
{
m_spritebank[offset] = data;
}
@@ -26,7 +26,7 @@ WRITE8_MEMBER(taotaido_state::spritebank_w)
/* the tilemap */
-WRITE16_MEMBER(taotaido_state::tileregs_w)
+void taotaido_state::tileregs_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
switch (offset)
{
@@ -51,7 +51,7 @@ WRITE16_MEMBER(taotaido_state::tileregs_w)
}
}
-WRITE16_MEMBER(taotaido_state::bgvideoram_w)
+void taotaido_state::bgvideoram_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
COMBINE_DATA(&m_bgram[offset]);
m_bg_tilemap->mark_tile_dirty(offset);