diff options
author | 2020-06-08 18:03:45 +0200 | |
---|---|---|
committer | 2020-06-08 18:03:45 +0200 | |
commit | 1a66aa592aa34b3eca250e996e55e66fc6e9fbaa (patch) | |
tree | 90c11e97aefe3ef50bcf670726243d243fd4366a /src/mame/video/exprraid.cpp | |
parent | e962aca9dfb746cd1452d50eb262bc0c4bc4bc39 (diff) |
drivers starting with e: removed read* and write* macros (nw)
Diffstat (limited to 'src/mame/video/exprraid.cpp')
-rw-r--r-- | src/mame/video/exprraid.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/video/exprraid.cpp b/src/mame/video/exprraid.cpp index d833ef70c0f..166d42f01fe 100644 --- a/src/mame/video/exprraid.cpp +++ b/src/mame/video/exprraid.cpp @@ -4,19 +4,19 @@ #include "includes/exprraid.h" -WRITE8_MEMBER(exprraid_state::exprraid_videoram_w) +void exprraid_state::exprraid_videoram_w(offs_t offset, uint8_t data) { m_videoram[offset] = data; m_fg_tilemap->mark_tile_dirty(offset); } -WRITE8_MEMBER(exprraid_state::exprraid_colorram_w) +void exprraid_state::exprraid_colorram_w(offs_t offset, uint8_t data) { m_colorram[offset] = data; m_fg_tilemap->mark_tile_dirty(offset); } -WRITE8_MEMBER(exprraid_state::exprraid_flipscreen_w) +void exprraid_state::exprraid_flipscreen_w(uint8_t data) { if (flip_screen() != (data & 0x01)) { @@ -25,7 +25,7 @@ WRITE8_MEMBER(exprraid_state::exprraid_flipscreen_w) } } -WRITE8_MEMBER(exprraid_state::exprraid_bgselect_w) +void exprraid_state::exprraid_bgselect_w(offs_t offset, uint8_t data) { if (m_bg_index[offset] != data) { @@ -34,12 +34,12 @@ WRITE8_MEMBER(exprraid_state::exprraid_bgselect_w) } } -WRITE8_MEMBER(exprraid_state::exprraid_scrollx_w) +void exprraid_state::exprraid_scrollx_w(offs_t offset, uint8_t data) { m_bg_tilemap->set_scrollx(offset, data); } -WRITE8_MEMBER(exprraid_state::exprraid_scrolly_w) +void exprraid_state::exprraid_scrolly_w(offs_t offset, uint8_t data) { m_bg_tilemap->set_scrolly(0, data); } |