summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-11-01 23:37:16 -0500
committer AJR <ajrhacker@users.noreply.github.com>2020-11-01 23:37:16 -0500
commit1f14e2a6fdcda275be7e7ed49ca374f30a7ea401 (patch)
tree10f970ea7431db1160c04788c216781b35879d75 /src
parenta41012e8c201ca2494380da453960bcd78376cd8 (diff)
fm7: Fix editing error in a41012e8c201ca2494380da453960bcd78376cd8
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/fm7.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/fm7.cpp b/src/mame/drivers/fm7.cpp
index 431c092cd1e..2a860c0c4bd 100644
--- a/src/mame/drivers/fm7.cpp
+++ b/src/mame/drivers/fm7.cpp
@@ -1823,6 +1823,7 @@ void fm7_state::machine_reset()
membank("bank1")->set_base(&m_basic_ptr[0]);
}
}
+
m_key_delay = 700; // 700ms on FM-7
m_key_repeat = 70; // 70ms on FM-7
m_break_flag = 0;
@@ -1831,6 +1832,7 @@ void fm7_state::machine_reset()
m_psg_data = 0;
m_fdc_side = 0;
m_fdc_drive = 0;
+
// set boot mode (FM-7 only, AV and later has boot RAM instead)
if(m_type == SYS_FM7)
{
@@ -2181,7 +2183,7 @@ ROM_START( fmnew7 )
ROM_END
ROM_START( fm7 )
- ROM_REGION( 0x8000, "maincpu", 0 ) // at 0x7ba5 there is the ID string 0300820920, meaning it's v3.00 from 1982/09/20
+ ROM_REGION( 0x8000, "fbasic", 0 ) // at 0x7ba5 there is the ID string 0300820920, meaning it's v3.00 from 1982/09/20
ROM_LOAD( "fbasic300.rom", 0x0000, 0x7c00, CRC(87c98494) SHA1(d7e3603b0a2442c7632dad45f9704d9ad71968f5) BAD_DUMP ) // last 1K is inaccessible
ROM_REGION( 0x10000, "sub", 0 )