Previous 199869 Revisions Next

r33070 Thursday 30th October, 2014 at 17:12:59 UTC by David Haywood
change program roms to ones found on the board, dump was from Tormod (nw)
[src/mame/drivers]kyugo.c ninjakd2.c uapce.c

trunk/src/mame/drivers/kyugo.c
r241581r241582
13791379GAME( 1986, legend,    0,        legend,    legend,   kyugo_state,   srdmissn, ROT0,  "Kyugo / Sega", "Legend", GAME_SUPPORTS_SAVE ) // no copyright (maybe also a bootleg?)
13801380GAME( 1986, legendb,   legend,   legend,    legend,   kyugo_state,   srdmissn, ROT0,  "bootleg", "Legion (bootleg of Legend)", GAME_SUPPORTS_SAVE ) // no copyright
13811381GAME( 1987, airwolf,   0,        srdmissn,  airwolf,  kyugo_state,   srdmissn, ROT0,  "Kyugo", "Airwolf", GAME_SUPPORTS_SAVE )
1382GAME( 1987, airwolfa,  airwolf,  srdmissn,  airwolf,  kyugo_state,   srdmissn, ROT0,  "Kyugo (United Amusements license)", "Airwolf (US)", GAME_SUPPORTS_SAVE )
1382GAME( 1987, airwolfa,  airwolf,  srdmissn,  airwolf,  kyugo_state,   srdmissn, ROT0,  "Kyugo (UA Theatre license)", "Airwolf (US)", GAME_SUPPORTS_SAVE )
13831383GAME( 1987, skywolf,   airwolf,  srdmissn,  skywolf,  kyugo_state,   srdmissn, ROT0,  "bootleg", "Sky Wolf (set 1)", GAME_SUPPORTS_SAVE )
13841384GAME( 1987, skywolf2,  airwolf,  srdmissn,  airwolf,  kyugo_state,   srdmissn, ROT0,  "bootleg", "Sky Wolf (set 2)", GAME_SUPPORTS_SAVE )
13851385GAME( 1987, skywolf3,  airwolf,  srdmissn,  airwolf,  kyugo_state,   srdmissn, ROT0,  "bootleg", "Sky Wolf (set 3)", GAME_SUPPORTS_SAVE )
trunk/src/mame/drivers/ninjakd2.c
r241581r241582
11341134ROM_END
11351135
11361136// Is this official? works with any program rom set, but nowhere in any program roms is the title JT-104 mentioned.
1137// It was found on a board with RAD ACTION program roms.
11371138//
11381139// In addition to the title screen text change the new graphic ROM has 'UNITED AMUSEMENTS' license text replacing
1139// the regular UPL copyright (used on the interludes) but strangely it appears to be derived from the RAD ACTION
1140// gfx rom (it still has the interlude text for that in tiles that are unused / empty in Ninja Kid 2)
1140// the regular UPL copyright (used on the interludes) however because it is using the RAD ACTION program roms the
1141// title screen still shows the 'World Games' license text.
11411142//
1142// Maybe this is actually meant to be used with a different program rom set altogether and the board had been
1143// upgraded / repaired?
1143// Did this board have incorrect program roms, or is this just how it was?
11441144
1145ROM_START( jt104 ) // identical to ninjakid2 set with different gfx rom
1145
1146ROM_START( jt104 ) // identical to radaction set with different gfx rom and decrypted sound rom
11461147   ROM_REGION( 0x30000, "maincpu", 0 )
1147   ROM_LOAD( "nk2_01.rom",   0x00000, 0x8000, CRC(3cdbb906) SHA1(f48f82528b5fc581ee3b1ccd0ef9cdecc7249bb3) )
1148   ROM_LOAD( "nk2_02.rom",   0x10000, 0x8000, CRC(b5ce9a1a) SHA1(295a7e1d41e1a8ee45f1250086a0c9314837eded) )   // banked at 8000-bfff
1149   ROM_LOAD( "nk2_03.rom",   0x18000, 0x8000, CRC(ad275654) SHA1(7d29a17132adb19aeee9b98be5b76bd6e91f308e) )
1150   ROM_LOAD( "nk2_04.rom",   0x20000, 0x8000, CRC(e7692a77) SHA1(84beb8b02c564bffa9cc00313214e8f109bd40f9) )
1151   ROM_LOAD( "nk2_05.rom",   0x28000, 0x8000, CRC(5dac9426) SHA1(0916cddbbe1e93c32b96fe28e145d34b2a892e80) )
1148   ROM_LOAD( "1.3u",         0x00000, 0x8000, CRC(5c475611) SHA1(2da88a95b5d68b259c8ae48af1438a82a1d601c1) )
1149   ROM_LOAD( "2.3s",         0x10000, 0x8000, CRC(a1e23bd2) SHA1(c3b6574dc9fa66b4f41c37754a0d20a865f8bc28) )   // banked at 8000-bfff
1150   ROM_LOAD( "nk2_03.rom",   0x18000, 0x8000, CRC(ad275654) SHA1(7d29a17132adb19aeee9b98be5b76bd6e91f308e) )   // 3.3r
1151   ROM_LOAD( "nk2_04.rom",   0x20000, 0x8000, CRC(e7692a77) SHA1(84beb8b02c564bffa9cc00313214e8f109bd40f9) )   // 4.3p
1152   ROM_LOAD( "nk2_05.bin",   0x28000, 0x8000, CRC(960725fb) SHA1(160c8bfaf089cbeeef2023f12379793079bff93b) )   // 5.3m
11521153
1153   ROM_REGION( 0x10000, "soundcpu", 0 )
1154   ROM_LOAD( "nk2_06.rom",   0x00000, 0x10000, CRC(d3a18a79) SHA1(e4df713f89d8a8b43ef831b14864c50ec9b53f0b) )  // encrypted
1154   ROM_REGION( 2*0x10000, "soundcpu", 0 )
1155   ROM_LOAD( "nk2_06.bin",   0x10000, 0x8000, CRC(7bfe6c9e) SHA1(aef8cbeb0024939bf65f77113a5cf777f6613722) )   // decrypted opcodes
1156   ROM_CONTINUE(             0x00000, 0x8000 )                                                                 // decrypted data
11551157
11561158   ROM_REGION( 0x2000, "user1", 0 ) /* MC8123 key */
11571159   ROM_LOAD( "ninjakd2.key",  0x0000, 0x2000, CRC(ec25318f) SHA1(619da3f69f9919e1457f79ee1d38e7ec80c4ebb0) )
11581160
11591161   ROM_REGION( 0x08000, "gfx1", 0 )    // fg tiles (need lineswapping)
1160   ROM_LOAD( "jt_104_12.bin",        0x00000, 0x08000, CRC(c038fadb) SHA1(59e9b125ead3e9bdc9d66de75dffd58956eb922e) )  // only this rom differs from the regular sets
1162   ROM_LOAD( "jt_104_12.bin",        0x00000, 0x08000, CRC(c038fadb) SHA1(59e9b125ead3e9bdc9d66de75dffd58956eb922e) )  // this rom contains the new title / license
11611163
11621164   ROM_REGION( 0x20000, "gfx2", 0 )    // sprites (need lineswapping)
11631165   ROM_LOAD( "nk2_08.rom",   0x00000, 0x10000, CRC(1b79c50a) SHA1(8954bc51cb9fbbe16b09381f35c84ccc56a803f3) )
r241581r241582
15301532GAME( 1987, ninjakd2a, ninjakd2, ninjakd2, ninjakd2, ninjakd2_state, bootleg,  ROT0,   "UPL", "Ninja-Kid II / NinjaKun Ashura no Shou (set 2, bootleg?)", GAME_SUPPORTS_SAVE )
15311533GAME( 1987, ninjakd2b, ninjakd2, ninjakd2, rdaction, ninjakd2_state, bootleg,  ROT0,   "UPL", "Ninja-Kid II / NinjaKun Ashura no Shou (set 3, bootleg?)", GAME_SUPPORTS_SAVE )
15321534GAME( 1987, rdaction,  ninjakd2, ninjakd2, rdaction, ninjakd2_state, ninjakd2, ROT0,   "UPL (World Games license)",       "Rad Action / NinjaKun Ashura no Shou", GAME_SUPPORTS_SAVE )
1533GAME( 1987, jt104,     ninjakd2, ninjakd2, rdaction, ninjakd2_state, ninjakd2, ROT0,   "UPL (United Amusements license)", "JT-104 (title screen modification of Ninja-Kid II)", GAME_SUPPORTS_SAVE )
1535GAME( 1987, jt104,     ninjakd2, ninjakd2, rdaction, ninjakd2_state, bootleg, ROT0,   "UPL (United Amusements license)", "JT-104 (title screen modification of Rad Action)", GAME_SUPPORTS_SAVE )
15341536GAME( 1987, mnight,    0,        mnight,   mnight,   ninjakd2_state, mnight,   ROT0,   "UPL (Kawakus license)", "Mutant Night", GAME_SUPPORTS_SAVE )
15351537GAME( 1988, arkarea,   0,        arkarea,  arkarea,  ninjakd2_state, mnight,   ROT0,   "UPL", "Ark Area", GAME_SUPPORTS_SAVE )
15361538GAME( 1988, robokid,   0,        robokid,  robokid,  ninjakd2_state, robokid,  ROT0,   "UPL", "Atomic Robo-kid", GAME_SUPPORTS_SAVE )
trunk/src/mame/drivers/uapce.c
r241581r241582
11/*
22
3    United Amusements PC-Engine based hardware
3    United Amusement PC-Engine based hardware
44    Driver by Mariusz Wojcieszek
55    Thanks for Charles MacDonald for hardware docs
66
r241581r241582
1212
1313 History
1414
15 In 1989 United Amusements (a large operator of arcades in the US at that
15 In 1989 United Amusement (a large operator of arcades in the US at that
1616 time) developed a JAMMA interface for the PC-Engine with NEC's blessing. NEC
1717 pulled funding for the project before mass production began, and it never
1818 took off.


Previous 199869 Revisions Next


© 1997-2024 The MAME Team