summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author mamehaze <mamehaze@users.noreply.github.com>2014-12-01 17:32:42 +0000
committer mamehaze <mamehaze@users.noreply.github.com>2014-12-01 17:32:42 +0000
commit97e7df3d79b331e743284960f07311728122dadb (patch)
treed3812dc51ce0299d9f57b8234aa70bad9e9a4c3e
parent8ff35b4a93f2b7f9c51de0cd00f6ffe8161c9cef (diff)
add communication MCU ROM (dumped from a prototype) to the Riding Hero sets [Brian Hargrove]
-rw-r--r--hash/neogeo.xml10
-rw-r--r--src/mame/drivers/neogeo_noslot.c8
2 files changed, 10 insertions, 8 deletions
diff --git a/hash/neogeo.xml b/hash/neogeo.xml
index 58703b2115b..e8466e18169 100644
--- a/hash/neogeo.xml
+++ b/hash/neogeo.xml
@@ -435,9 +435,10 @@
<rom loadflag="load16_word_swap" name="006-p1.p1" offset="0x000000" size="0x080000" crc="d4aaf597" sha1="34d35b71adb5bd06f4f1b50ffd9c58ab9c440a84" />
<!-- MB834200 -->
</dataarea>
- <dataarea name="mcu" size="0x1000">
+ <dataarea name="mcu" size="0x2000">
<!-- Hitachi HD6301V1 MCU -->
- <!-- <rom name="hd6301v1p.com", 0x0000, 0x1000, NO_DUMP /> -->
+ <rom offset="0x000000" size="0x02000" name="rhcom.bin" crc="e5cd6306" sha1="f6bbb8ae562804d67e137290c765c3589fa334c0" />
+ <!-- dumped from a prototype with external ROM, not 100% confirmed as being the same on a final, or other games (lbowling, trally) -->
</dataarea>
<dataarea name="fixed" size="0x040000">
<rom offset="0x000000" size="0x020000" name="006-s1.s1" crc="eb5189f0" sha1="0239c342ea62e73140a2306052f226226461a478" />
@@ -487,9 +488,10 @@
<rom loadflag="load16_word_swap" name="006-pg1.p1" offset="0x000000" size="0x080000" status="baddump" crc="52445646" sha1="647bb31f2f68453c1366cb6e2e867e37d1df7a54" />
<!-- Chip label p1h does not exist, renamed temporarly to pg1, marked BAD_DUMP. This needs to be verified. -->
</dataarea>
- <dataarea name="mcu" size="0x1000">
+ <dataarea name="mcu" size="0x2000">
<!-- Hitachi HD6301V1 MCU -->
- <!-- <rom name="hd6301v1p.com", 0x0000, 0x1000, NO_DUMP /> -->
+ <rom offset="0x000000" size="0x02000" name="rhcom.bin" crc="e5cd6306" sha1="f6bbb8ae562804d67e137290c765c3589fa334c0" />
+ <!-- dumped from a prototype with external ROM, not 100% confirmed as being the same on a final, or other games (lbowling, trally) -->
</dataarea>
<dataarea name="fixed" size="0x040000">
<rom offset="0x000000" size="0x020000" name="006-s1.s1" crc="eb5189f0" sha1="0239c342ea62e73140a2306052f226226461a478" />
diff --git a/src/mame/drivers/neogeo_noslot.c b/src/mame/drivers/neogeo_noslot.c
index 91acfc4c2a9..d5a419e669b 100644
--- a/src/mame/drivers/neogeo_noslot.c
+++ b/src/mame/drivers/neogeo_noslot.c
@@ -620,8 +620,8 @@ ROM_START( ridhero ) /* MVS AND AES VERSION */
ROM_REGION( 0x100000, "maincpu", 0 )
ROM_LOAD16_WORD_SWAP( "006-p1.p1", 0x000000, 0x080000, CRC(d4aaf597) SHA1(34d35b71adb5bd06f4f1b50ffd9c58ab9c440a84) ) /* MB834200 */
- ROM_REGION( 0x1000, "mcu", 0 ) /* Hitachi HD6301V1 MCU */
- ROM_LOAD( "hd6301v1p.com", 0x0000, 0x1000, NO_DUMP )
+ ROM_REGION( 0x2000, "mcu", 0 ) /* Hitachi HD6301V1 MCU */
+ ROM_LOAD( "rhcom.bin", 0x0000, 0x2000, CRC(e5cd6306) SHA1(f6bbb8ae562804d67e137290c765c3589fa334c0) ) // dumped from a prototype with external ROM, not 100% confirmed as being the same on a final, or other games (lbowling, trally)
NEO_SFIX_128K( "006-s1.s1", CRC(eb5189f0) SHA1(0239c342ea62e73140a2306052f226226461a478) ) /* TC531000 */
@@ -649,8 +649,8 @@ ROM_START( ridheroh )
ROM_LOAD16_WORD_SWAP( "006-pg1.p1", 0x000000, 0x080000, BAD_DUMP CRC(52445646) SHA1(647bb31f2f68453c1366cb6e2e867e37d1df7a54) )
/* Chip label p1h does not exist, renamed temporarly to pg1, marked BAD_DUMP. This needs to be verified. */
- ROM_REGION( 0x1000, "mcu", 0 ) /* Hitachi HD6301V1 MCU */
- ROM_LOAD( "hd6301v1p.com", 0x0000, 0x1000, NO_DUMP )
+ ROM_REGION( 0x2000, "mcu", 0 ) /* Hitachi HD6301V1 MCU */
+ ROM_LOAD( "rhcom.bin", 0x0000, 0x2000, CRC(e5cd6306) SHA1(f6bbb8ae562804d67e137290c765c3589fa334c0) ) // dumped from a prototype with external ROM, not 100% confirmed as being the same on a final, or other games (lbowling, trally)
NEO_SFIX_128K( "006-s1.s1", CRC(eb5189f0) SHA1(0239c342ea62e73140a2306052f226226461a478) ) /* TC531000 */