summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2021-04-08 14:36:35 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2021-04-08 14:36:35 +1000
commit10e96f726c6929edd31fe794b339a4b18740a601 (patch)
tree24a08e765854642e9dfd0a89dd8879847c46c977
parenteaa4ffcd7dee20ce69f675c15c33c4b00584d32c (diff)
mt32: fixed rom size error from recent commit.
-rw-r--r--src/mame/drivers/roland_mt32.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/roland_mt32.cpp b/src/mame/drivers/roland_mt32.cpp
index 8858607d695..0d80db597fb 100644
--- a/src/mame/drivers/roland_mt32.cpp
+++ b/src/mame/drivers/roland_mt32.cpp
@@ -406,7 +406,8 @@ ROM_START( mt32 )
// Dumped from "new" board revision single 128K x 8 ROM
ROM_SYSTEM_BIOS( 6, "204", "Firmware 2.0.4" )
- ROMX_LOAD( "mt32_2.0.4.ic28.bin", 0, 0x8000, CRC(59a49d5c) SHA1(2c16432b6c73dd2a3947cba950a0f4c19d6180eb), ROM_BIOS(6) )
+ ROMX_LOAD( "mt32_2.0.4.ic28", 0, 0x10000, CRC(59a49d5c) SHA1(2c16432b6c73dd2a3947cba950a0f4c19d6180eb), ROM_BIOS(6) )
+ ROM_IGNORE(0x10000) // banking needs to be implemented
// We need a bios-like selection for these too
ROM_REGION( 0x80000, "la32", 0 )