summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2020-04-06 01:15:42 +0900
committer GitHub <noreply@github.com>2020-04-05 18:15:42 +0200
commitf72d38f677b9365f6d0871a613aedf0ac90dcbf2 (patch)
tree2b649383e58b6d0fa6e6f7b2a8aab14c47c939fb /src/mame/drivers
parentb5e08ae5e83f3c58948e82b80fb9b349504a9ef7 (diff)
nmk16.cpp : Implement sabotenb vertical scrolling, noticeable when explosion occurs (#6521)
* nmk16.cpp : Implement sabotenb scrolling reference : https://www.youtube.com/watch?v=lljCeUfCMDQ (Live stream) * nmk16.cpp : Fix hardware configuration
Diffstat (limited to 'src/mame/drivers')
-rw-r--r--src/mame/drivers/nmk16.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/nmk16.cpp b/src/mame/drivers/nmk16.cpp
index ce90a961847..1ee3acb0569 100644
--- a/src/mame/drivers/nmk16.cpp
+++ b/src/mame/drivers/nmk16.cpp
@@ -1286,7 +1286,7 @@ void nmk16_state::bjtwin_map(address_map &map)
map(0x084020, 0x08402f).w("nmk112", FUNC(nmk112_device::okibank_w)).umask16(0x00ff);
map(0x088000, 0x0887ff).ram().w(m_palette, FUNC(palette_device::write16)).share("palette");
map(0x094001, 0x094001).w(FUNC(nmk16_state::tilebank_w));
- map(0x094002, 0x094003).nopw(); /* IRQ enable? */
+ map(0x094003, 0x094003).w(FUNC(nmk16_state::bjtwin_scroll_w)); // sabotenb specific?
map(0x09c000, 0x09cfff).mirror(0x1000).ram().w(FUNC(nmk16_state::bgvideoram_w<0>)).share("bgvideoram0");
map(0x0f0000, 0x0fffff).ram().share("mainram");
}