summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2020-11-18 13:29:02 +0100
committer Olivier Galibert <galibert@pobox.com>2020-11-18 13:29:14 +0100
commit13ef392715e82cb974b35459d4c6c4152004674f (patch)
tree3981a02d52d283c482a3ca5dde1dfc49968e7e4d
parent703f1f0dd418e7041efcb8c5140d975d9144300c (diff)
Fix kron, vram goes over what was in the map
-rw-r--r--src/mame/drivers/kron.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/kron.cpp b/src/mame/drivers/kron.cpp
index 46e49477c18..054889daaa4 100644
--- a/src/mame/drivers/kron.cpp
+++ b/src/mame/drivers/kron.cpp
@@ -169,8 +169,7 @@ void kron180_state::kron180_mem(address_map &map)
map.unmap_value_high();
map(0x0000, 0x7fff).rom().region("roms", 0x8000);
map(0x8000, 0x85ff).ram().mirror(0x6000);
- map(0x8600, 0x95ff).ram().share(m_vram).mirror(0x6000);
- map(0x9600, 0x9fff).ram().mirror(0x6000);
+ map(0x8600, 0x9fff).ram().share(m_vram).mirror(0x6000);
}
/* IO decoding