summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/timelimt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/timelimt.cpp')
-rw-r--r--src/mame/video/timelimt.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/timelimt.cpp b/src/mame/video/timelimt.cpp
index d63d8a987a4..d0b03177d55 100644
--- a/src/mame/video/timelimt.cpp
+++ b/src/mame/video/timelimt.cpp
@@ -93,31 +93,31 @@ void timelimt_state::video_start()
/***************************************************************************/
-WRITE8_MEMBER(timelimt_state::videoram_w)
+void timelimt_state::videoram_w(offs_t offset, uint8_t data)
{
m_videoram[offset] = data;
m_fg_tilemap->mark_tile_dirty(offset);
}
-WRITE8_MEMBER(timelimt_state::bg_videoram_w)
+void timelimt_state::bg_videoram_w(offs_t offset, uint8_t data)
{
m_bg_videoram[offset] = data;
m_bg_tilemap->mark_tile_dirty(offset);
}
-WRITE8_MEMBER(timelimt_state::scroll_x_lsb_w)
+void timelimt_state::scroll_x_lsb_w(uint8_t data)
{
m_scrollx &= 0x100;
m_scrollx |= data & 0xff;
}
-WRITE8_MEMBER(timelimt_state::scroll_x_msb_w)
+void timelimt_state::scroll_x_msb_w(uint8_t data)
{
m_scrollx &= 0xff;
m_scrollx |= ( data & 1 ) << 8;
}
-WRITE8_MEMBER(timelimt_state::scroll_y_w)
+void timelimt_state::scroll_y_w(uint8_t data)
{
m_scrolly = data;
}