summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/tecmo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/tecmo.cpp')
-rw-r--r--src/mame/video/tecmo.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/video/tecmo.cpp b/src/mame/video/tecmo.cpp
index 5a49dc66afe..988467225b0 100644
--- a/src/mame/video/tecmo.cpp
+++ b/src/mame/video/tecmo.cpp
@@ -106,25 +106,25 @@ void tecmo_state::video_start()
***************************************************************************/
-WRITE8_MEMBER(tecmo_state::txvideoram_w)
+void tecmo_state::txvideoram_w(offs_t offset, uint8_t data)
{
m_txvideoram[offset] = data;
m_tx_tilemap->mark_tile_dirty(offset & 0x3ff);
}
-WRITE8_MEMBER(tecmo_state::fgvideoram_w)
+void tecmo_state::fgvideoram_w(offs_t offset, uint8_t data)
{
m_fgvideoram[offset] = data;
m_fg_tilemap->mark_tile_dirty(offset & 0x1ff);
}
-WRITE8_MEMBER(tecmo_state::bgvideoram_w)
+void tecmo_state::bgvideoram_w(offs_t offset, uint8_t data)
{
m_bgvideoram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset & 0x1ff);
}
-WRITE8_MEMBER(tecmo_state::fgscroll_w)
+void tecmo_state::fgscroll_w(offs_t offset, uint8_t data)
{
m_fgscroll[offset] = data;
@@ -133,7 +133,7 @@ WRITE8_MEMBER(tecmo_state::fgscroll_w)
m_screen->update_partial(m_screen->vpos());
}
-WRITE8_MEMBER(tecmo_state::bgscroll_w)
+void tecmo_state::bgscroll_w(offs_t offset, uint8_t data)
{
m_bgscroll[offset] = data;
@@ -142,7 +142,7 @@ WRITE8_MEMBER(tecmo_state::bgscroll_w)
m_screen->update_partial(m_screen->vpos());
}
-WRITE8_MEMBER(tecmo_state::flipscreen_w)
+void tecmo_state::flipscreen_w(uint8_t data)
{
flip_screen_set(data & 1);
}