summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/system16.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/system16.cpp')
-rw-r--r--src/mame/video/system16.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/video/system16.cpp b/src/mame/video/system16.cpp
index d392ef61e65..be48ba70e81 100644
--- a/src/mame/video/system16.cpp
+++ b/src/mame/video/system16.cpp
@@ -102,7 +102,7 @@ static const int resistances_normal[6] = {3900, 2000, 1000, 1000/2, 1000/4, 0};
static const int resistances_sh[6] = {3900, 2000, 1000, 1000/2, 1000/4, 470};
#ifdef UNUSED_CODE
-WRITE16_MEMBER(segas1x_bootleg_state::sys16_paletteram_w)
+void segas1x_bootleg_state::sys16_paletteram_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
uint16_t newword;
@@ -274,7 +274,7 @@ TILE_GET_INFO_MEMBER(segas1x_bootleg_state::get_fg2_tile_info)
0);
}
-WRITE16_MEMBER(segas1x_bootleg_state::sys16_tileram_w)
+void segas1x_bootleg_state::sys16_tileram_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
uint16_t oldword = m_tileram[offset];
@@ -339,7 +339,7 @@ TILE_GET_INFO_MEMBER(segas1x_bootleg_state::get_text_tile_info)
tileinfo.category = 0;
}
-WRITE16_MEMBER(segas1x_bootleg_state::sys16_textram_w)
+void segas1x_bootleg_state::sys16_textram_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
COMBINE_DATA(&m_textram[offset]);
m_text_layer->mark_tile_dirty(offset);
@@ -511,27 +511,27 @@ TILE_GET_INFO_MEMBER(segas1x_bootleg_state::get_s16a_bootleg_tile_info1)
0);
}
-WRITE16_MEMBER(segas1x_bootleg_state::s16a_bootleg_bgscrolly_w)
+void segas1x_bootleg_state::s16a_bootleg_bgscrolly_w(uint16_t data)
{
m_bg_scrolly = data;
}
-WRITE16_MEMBER(segas1x_bootleg_state::s16a_bootleg_bgscrollx_w)
+void segas1x_bootleg_state::s16a_bootleg_bgscrollx_w(uint16_t data)
{
m_bg_scrollx = data;
}
-WRITE16_MEMBER(segas1x_bootleg_state::s16a_bootleg_fgscrolly_w)
+void segas1x_bootleg_state::s16a_bootleg_fgscrolly_w(uint16_t data)
{
m_fg_scrolly = data;
}
-WRITE16_MEMBER(segas1x_bootleg_state::s16a_bootleg_fgscrollx_w)
+void segas1x_bootleg_state::s16a_bootleg_fgscrollx_w(uint16_t data)
{
m_fg_scrollx = data;
}
-WRITE16_MEMBER(segas1x_bootleg_state::s16a_bootleg_tilemapselect_w)
+void segas1x_bootleg_state::s16a_bootleg_tilemapselect_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
COMBINE_DATA(&m_tilemapselect);
//printf("system16 bootleg tilemapselect %04x\n", m_tilemapselect);