summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mame/audio/dkong.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/dkong.cpp b/src/mame/audio/dkong.cpp
index e85b4836bed..36740e32f86 100644
--- a/src/mame/audio/dkong.cpp
+++ b/src/mame/audio/dkong.cpp
@@ -1292,7 +1292,7 @@ void dkong_state::radarscp1_sound_io_map(address_map &map)
void dkong_state::dkong3_sound1_map(address_map &map)
{
- map(0x0000, 0x01ff).ram();
+ map(0x0000, 0x07ff).ram();
map(0x4016, 0x4016).r("latch1", FUNC(latch8_device::read)); /* overwrite default */
map(0x4017, 0x4017).r("latch2", FUNC(latch8_device::read));
map(0xe000, 0xffff).rom();
@@ -1300,7 +1300,7 @@ void dkong_state::dkong3_sound1_map(address_map &map)
void dkong_state::dkong3_sound2_map(address_map &map)
{
- map(0x0000, 0x01ff).ram();
+ map(0x0000, 0x07ff).ram();
map(0x4016, 0x4016).r("latch3", FUNC(latch8_device::read)); /* overwrite default */
map(0xe000, 0xffff).rom();
}