summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/divebomb.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2018-03-19 15:28:26 +0100
committer GitHub <noreply@github.com>2018-03-19 15:28:26 +0100
commit218387eae122f7c359b957b8ec07f20a09dfc0ba (patch)
tree5212bdfc497570eb074e40a5f6fd2a6aeb624967 /src/mame/drivers/divebomb.cpp
parent7921b9dc8e507ff90b1814a7585c0899ac1a94b5 (diff)
divebomb.cpp: fixed regression (nw)
Diffstat (limited to 'src/mame/drivers/divebomb.cpp')
-rw-r--r--src/mame/drivers/divebomb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/divebomb.cpp b/src/mame/drivers/divebomb.cpp
index 04c9adcc186..5d7c620e2ea 100644
--- a/src/mame/drivers/divebomb.cpp
+++ b/src/mame/drivers/divebomb.cpp
@@ -166,7 +166,7 @@ void divebomb_state::divebomb_spritecpu_iomap(address_map &map)
{
map.global_mask(0xff);
map(0x00, 0x00).w(this, FUNC(divebomb_state::spritecpu_port00_w));
- map(0x80, 0x80).r("spr2fg", FUNC(generic_latch_8_device::read)).w(m_spr2fg_latch, FUNC(generic_latch_8_device::write));
+ map(0x80, 0x80).r("fg2spr", FUNC(generic_latch_8_device::read)).w(m_spr2fg_latch, FUNC(generic_latch_8_device::write));
}
@@ -217,7 +217,7 @@ void divebomb_state::divebomb_rozcpu_iomap(address_map &map)
map(0x14, 0x14).w(this, FUNC(divebomb_state::rozcpu_wrap_enable_w<0>));
map(0x20, 0x2f).w(m_k051316[0], FUNC(k051316_device::ctrl_w));
map(0x30, 0x3f).w(m_k051316[1], FUNC(k051316_device::ctrl_w));
- map(0x40, 0x40).r("roz2fg", FUNC(generic_latch_8_device::read)).w(m_roz2fg_latch, FUNC(generic_latch_8_device::write));
+ map(0x40, 0x40).r("fg2roz", FUNC(generic_latch_8_device::read)).w(m_roz2fg_latch, FUNC(generic_latch_8_device::write));
map(0x50, 0x50).w(this, FUNC(divebomb_state::rozcpu_pal_w));
}