summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/wecleman.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/wecleman.cpp')
-rw-r--r--src/mame/video/wecleman.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/wecleman.cpp b/src/mame/video/wecleman.cpp
index 71a8bffcd38..c76dfa8d6a7 100644
--- a/src/mame/video/wecleman.cpp
+++ b/src/mame/video/wecleman.cpp
@@ -406,7 +406,7 @@ TILE_GET_INFO_MEMBER(wecleman_state::wecleman_get_txt_tile_info)
tileinfo.set(PAGE_GFX, code&0xfff, (code>>5&0x78)+(code>>12), 0);
}
-WRITE16_MEMBER(wecleman_state::wecleman_txtram_w)
+void wecleman_state::wecleman_txtram_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
uint16_t old_data = m_txtram[offset];
uint16_t new_data = COMBINE_DATA(&m_txtram[offset]);
@@ -472,7 +472,7 @@ TILE_GET_INFO_MEMBER(wecleman_state::wecleman_get_fg_tile_info)
------------------------------------------------------------------------*/
/* Pages that compose both the background and the foreground */
-WRITE16_MEMBER(wecleman_state::wecleman_pageram_w)
+void wecleman_state::wecleman_pageram_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
COMBINE_DATA(&m_pageram[offset]);
@@ -810,7 +810,7 @@ void wecleman_state::hotchase_draw_road(bitmap_ind16 &bitmap, const rectangle &c
// new video and palette code
// TODO: remove me.
-WRITE16_MEMBER(wecleman_state::wecleman_videostatus_w)
+void wecleman_state::wecleman_videostatus_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
COMBINE_DATA(m_videostatus);
@@ -830,7 +830,7 @@ WRITE16_MEMBER(wecleman_state::wecleman_videostatus_w)
}
}
-WRITE16_MEMBER(wecleman_state::hotchase_paletteram16_SBGRBBBBGGGGRRRR_word_w)
+void wecleman_state::hotchase_paletteram16_SBGRBBBBGGGGRRRR_word_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
int newword, r, g, b;
@@ -845,7 +845,7 @@ WRITE16_MEMBER(wecleman_state::hotchase_paletteram16_SBGRBBBBGGGGRRRR_word_w)
m_palette->set_pen_color(offset+0x800, pal5bit(r)/2, pal5bit(g)/2, pal5bit(b)/2);
}
-WRITE16_MEMBER(wecleman_state::wecleman_paletteram16_SSSSBBBBGGGGRRRR_word_w)
+void wecleman_state::wecleman_paletteram16_SSSSBBBBGGGGRRRR_word_w(offs_t offset, uint16_t data, uint16_t mem_mask)
{
int newword = COMBINE_DATA(&m_generic_paletteram_16[offset]);