summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/popeye.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/popeye.cpp')
-rw-r--r--src/mame/video/popeye.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/popeye.cpp b/src/mame/video/popeye.cpp
index 56515ac25f6..45d09c0ab12 100644
--- a/src/mame/video/popeye.cpp
+++ b/src/mame/video/popeye.cpp
@@ -190,7 +190,7 @@ void tnx1_state::update_palette()
m_palette_bank_cache = m_palette_bank;
}
-WRITE8_MEMBER(tnx1_state::background_w)
+void tnx1_state::background_w(offs_t offset, uint8_t data)
{
// TODO: confirm the memory layout
bool lsn = (data & 0x80) == 0;
@@ -204,7 +204,7 @@ WRITE8_MEMBER(tnx1_state::background_w)
}
}
-WRITE8_MEMBER(tpp2_state::background_w)
+void tpp2_state::background_w(offs_t offset, uint8_t data)
{
// TODO: confirm the memory layout
bool lsn = (offset & 0x40) == 0;
@@ -219,13 +219,13 @@ WRITE8_MEMBER(tpp2_state::background_w)
}
}
-WRITE8_MEMBER(tnx1_state::popeye_videoram_w)
+void tnx1_state::popeye_videoram_w(offs_t offset, uint8_t data)
{
m_videoram[offset] = data;
m_fg_tilemap->mark_tile_dirty(offset);
}
-WRITE8_MEMBER(tnx1_state::popeye_colorram_w)
+void tnx1_state::popeye_colorram_w(offs_t offset, uint8_t data)
{
m_colorram[offset] = data;
m_fg_tilemap->mark_tile_dirty(offset);