diff options
author | 2020-05-28 18:10:20 +0200 | |
---|---|---|
committer | 2020-05-28 18:10:20 +0200 | |
commit | d4c772bcc7263dd2697a7977d196a96ad2d067a3 (patch) | |
tree | 3fa4d24ee8250f44ec9f7a0cc9df94bf8bd3c5cb /src/mame/drivers/jollyjgr.cpp | |
parent | c7d667d41adaa9627a3350e7f984fe7fc431f081 (diff) |
drivers starting with i, j, k, l and m: more macro removal (nw)
Diffstat (limited to 'src/mame/drivers/jollyjgr.cpp')
-rw-r--r-- | src/mame/drivers/jollyjgr.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/drivers/jollyjgr.cpp b/src/mame/drivers/jollyjgr.cpp index 6c9f96c556a..4c2bfccea69 100644 --- a/src/mame/drivers/jollyjgr.cpp +++ b/src/mame/drivers/jollyjgr.cpp @@ -163,10 +163,10 @@ private: uint8_t m_bitmap_disable; uint8_t m_tilemap_bank; uint8_t m_pri; - DECLARE_WRITE8_MEMBER(jollyjgr_videoram_w); - DECLARE_WRITE8_MEMBER(jollyjgr_attrram_w); - DECLARE_WRITE8_MEMBER(jollyjgr_misc_w); - DECLARE_WRITE8_MEMBER(jollyjgr_coin_lookout_w); + void jollyjgr_videoram_w(offs_t offset, uint8_t data); + void jollyjgr_attrram_w(offs_t offset, uint8_t data); + void jollyjgr_misc_w(uint8_t data); + void jollyjgr_coin_lookout_w(uint8_t data); TILE_GET_INFO_MEMBER(get_bg_tile_info); virtual void machine_start() override; virtual void machine_reset() override; @@ -191,13 +191,13 @@ private: * *************************************/ -WRITE8_MEMBER(jollyjgr_state::jollyjgr_videoram_w) +void jollyjgr_state::jollyjgr_videoram_w(offs_t offset, uint8_t data) { m_videoram[offset] = data; m_bg_tilemap->mark_tile_dirty(offset); } -WRITE8_MEMBER(jollyjgr_state::jollyjgr_attrram_w) +void jollyjgr_state::jollyjgr_attrram_w(offs_t offset, uint8_t data) { if (offset & 1) { @@ -215,7 +215,7 @@ WRITE8_MEMBER(jollyjgr_state::jollyjgr_attrram_w) m_colorram[offset] = data; } -WRITE8_MEMBER(jollyjgr_state::jollyjgr_misc_w) +void jollyjgr_state::jollyjgr_misc_w(uint8_t data) { // they could be swapped, because it always set "data & 3" m_flip_x = data & 1; @@ -234,7 +234,7 @@ WRITE8_MEMBER(jollyjgr_state::jollyjgr_misc_w) m_maincpu->set_input_line(INPUT_LINE_NMI, CLEAR_LINE); } -WRITE8_MEMBER(jollyjgr_state::jollyjgr_coin_lookout_w) +void jollyjgr_state::jollyjgr_coin_lookout_w(uint8_t data) { machine().bookkeeping().coin_lockout_global_w(data & 1); |