summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2021-07-14 10:42:03 +0200
committer Olivier Galibert <galibert@pobox.com>2021-07-14 10:42:03 +0200
commita7e088f30aa7ec6785a813b8adf1d2210e1a5e30 (patch)
treec918d87ca991704ccec92e0cb5719a83b38521dc
parent72ddd181d9b701dd0feec28b558c4efd41a7054f (diff)
sx1010: correct rom mapping to see the reset code
-rw-r--r--src/mame/drivers/sx1000.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/sx1000.cpp b/src/mame/drivers/sx1000.cpp
index d847ffc452e..1226f09ad0c 100644
--- a/src/mame/drivers/sx1000.cpp
+++ b/src/mame/drivers/sx1000.cpp
@@ -101,9 +101,9 @@ void sx1000_state::init_common()
void sx1000_state::cpu_map(address_map &map)
{
- map(0x000000, 0x00ffff).rom().region("eprom", 0); // FIXME: probably mapped/unmapped during reset
+ map(0x000000, 0x007fff).rom().region("eprom", 0x8000); // FIXME: probably mapped/unmapped during reset
- map(0xf00000, 0xf0ffff).rom().region("eprom", 0);
+ map(0xf00000, 0xf07fff).rom().region("eprom", 0x8000);
}
void sx1000_state::common(machine_config &config)