summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/y2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/y2.cpp')
-rw-r--r--src/mame/drivers/y2.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/mame/drivers/y2.cpp b/src/mame/drivers/y2.cpp
index f67b35e0957..c1f78b935c4 100644
--- a/src/mame/drivers/y2.cpp
+++ b/src/mame/drivers/y2.cpp
@@ -82,7 +82,7 @@ MACHINE_CONFIG_START(system_board_y2_state::system_board_y2)
MACHINE_CONFIG_END
ROM_START( kof2002um )
- ROM_REGION( 0x8000000, "boot", 0 ) // presumably the boot code (encrypted?)
+ ROM_REGION( 0x8000000, "boot", 0 ) // sound program only? or boot too?
ROM_LOAD( "s29gl01gp11fcr2.u103", 0x0000000, 0x8000000, CRC(722cbad1) SHA1(0292be12255ee4bd586166a3f5cd108c5453295b) )
ROM_REGION( 0x42000000, "nand_u101", 0 ) // presumably accessed like a filesystem (encrypted)
@@ -91,6 +91,18 @@ ROM_START( kof2002um )
ROM_LOAD( "nand08gw3b2cn6.u102", 0x00000000, 0x42000000, CRC(ac2dc586) SHA1(5168b4c0c6343b6c040a206da04fa7cdbc3b35b9) )
ROM_END
+ROM_START( kof2002umj )
+ ROM_REGION( 0x8000000, "boot", 0 ) // sound program only? or boot too?
+ ROM_LOAD( "s29gl01gp11fcr2.u103", 0x0000000, 0x8000000, CRC(916c9d68) SHA1(65c09f75b6a71b0d79a827c6829d1c05d8699a32) )
+
+ ROM_REGION( 0x42000000, "nand_u101", 0 ) // presumably accessed like a filesystem (encrypted)
+ ROM_LOAD( "nand08gw3b2cn6.u101", 0x00000000, 0x42000000, CRC(46e03f1d) SHA1(62d8eeb7513e851bf11a26a84b5d310270f3fcf6) )
+ ROM_REGION( 0x42000000, "nand_u102", 0 )
+ ROM_LOAD( "nand08gw3b2cn6.u102", 0x00000000, 0x42000000, CRC(db931dca) SHA1(1b1fc88732944e9ede09e584c7b07e28a59df3e2) )
+ROM_END
+
+
/* The title screen shows "The King of Fighters - Road to Revenge" (Chinese / English) while the speech on the title screen announcer says "The King of Fighters 2002 Unlimited Match"
There is a PS2 version with the Unlimited Match title screen, but unless it's used for a different region the arcade doesn't show that title, only announces it. */
-GAME( 2009, kof2002um, 0, system_board_y2, system_board_y2, system_board_y2_state, empty_init, ROT0, "SNK Playmore / New Channel", "The King of Fighters - Road to Revenge / The King of Fighters 2002 Unlimited Match", MACHINE_IS_SKELETON )
+GAME( 2009, kof2002um, 0, system_board_y2, system_board_y2, system_board_y2_state, empty_init, ROT0, "SNK Playmore / New Channel", "The King of Fighters - Road to Revenge / The King of Fighters 2002 Unlimited Match (China)", MACHINE_IS_SKELETON ) // also Export?
+GAME( 2009, kof2002umj, kof2002um, system_board_y2, system_board_y2, system_board_y2_state, empty_init, ROT0, "SNK Playmore / New Channel", "The King of Fighters - Road to Revenge / The King of Fighters 2002 Unlimited Match (Japan)", MACHINE_IS_SKELETON )