Added Unknown Neo-Geo Vs. Fighter (prototype) [Brian Hargrove]

Added clone of Raiden DX (Japan, set 2) [Alex Cmaylo]
This commit is contained in:
jackchatelet 2016-04-10 09:47:16 +00:00
parent 47fd8a1172
commit 673ea2e3a7
4 changed files with 615 additions and 529 deletions

View File

@ -12029,6 +12029,49 @@ struct BurnDriver BurnDrvsdodgeb = {
0x1000, 304, 224, 4, 3
};
// Unknown Neo-Geo Vs. Fighter (prototype)
// same ID code as Voltage Fighter Gowkaizer so probably by Technos
static struct BurnRomInfo unkneoRomDesc[] = {
{ "EP1.bin", 0x080000, 0xf353448c, 1 | BRF_ESS | BRF_PRG }, // 0 68K code
{ "EP2.bin", 0x080000, 0xf25c71ad, 1 | BRF_ESS | BRF_PRG }, // 1
{ "s1.s1", 0x020000, 0x706477a7, 2 | BRF_GRA }, // 1 Text layer tiles
{ "no3.bin", 0x1000000, 0x81821826, 3 | BRF_GRA }, // 2 Sprite data
{ "no4.bin", 0x1000000, 0x3601d568, 3 | BRF_GRA }, // 3
{ "sm1.sm1", 0x020000, 0x94416d67, 4 | BRF_ESS | BRF_PRG }, // 6 Z80 code
{ "sram.v1", 0x200000, 0x00000000, 5 | BRF_SND | BRF_NODUMP }, // 7 Sound data
};
STDROMPICKEXT(unkneo, unkneo, neogeo)
STD_ROM_FN(unkneo)
static void UnkneoCallback()
{
BurnLoadRom(Neo68KROMActive + 0x000000, 0, 2);
BurnLoadRom(Neo68KROMActive + 0x000001, 1, 2);
}
static INT32 UnkneoInit()
{
NeoCallbackActive->pInitialise = UnkneoCallback;
return NeoInit();
}
struct BurnDriver BurnDrvunkneo = {
"unkneo", NULL, "neogeo", NULL, "1996",
"Unknown Neo-Geo Vs. Fighter (prototype)\0", NULL, "Technos Japan?", "Neo Geo MVS",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING, 2, HARDWARE_PREFIX_CARTRIDGE | HARDWARE_SNK_NEOGEO | HARDWARE_SNK_SWAPP, GBF_SPORTSMISC, 0,
NULL, unkneoRomInfo, unkneoRomName, NULL, NULL, neogeoInputInfo, neogeoDIPInfo,
UnkneoInit, NeoExit, NeoFrame, NeoRender, NeoScan, &NeoRecalcPalette,
0x1000, 304, 224, 4, 3
};
// Tecmo World Soccer '96
/* MVS ONLY RELEASE */

View File

@ -3594,7 +3594,7 @@ struct BurnDriver BurnDrvRaidendxnl = {
};
// Raiden DX (Japan)
// Raiden DX (Japan, set 1)
static struct BurnRomInfo raidendxjRomDesc[] = {
{ "rdxj_1.u1211", 0x080000, 0x5af382e1, 1 | BRF_PRG | BRF_ESS }, // 0 V30 Code
@ -3626,7 +3626,7 @@ STD_ROM_FN(raidendxj)
struct BurnDriver BurnDrvRaidendxj = {
"raidendxj", "raidendx", NULL, NULL, "1994",
"Raiden DX (Japan)\0", NULL, "Seibu Kaihatsu", "Miscellaneous",
"Raiden DX (Japan, set 1)\0", NULL, "Seibu Kaihatsu", "Miscellaneous",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_CLONE | BDF_ORIENTATION_VERTICAL | BDF_HISCORE_SUPPORTED, 2, HARDWARE_MISC_POST90S, GBF_VERSHOOT, 0,
NULL, raidendxjRomInfo, raidendxjRomName, NULL, NULL, RaidendxInputInfo, RaidendxDIPInfo,
@ -3635,6 +3635,47 @@ struct BurnDriver BurnDrvRaidendxj = {
};
// Raiden DX (Japan, set 2)
static struct BurnRomInfo raidendxjaRomDesc[] = {
{ "1.bin", 0x080000, 0x247e21c7, 1 | BRF_PRG | BRF_ESS }, // 0 V30 Code
{ "2.bin", 0x080000, 0xf2e9855a, 1 | BRF_PRG | BRF_ESS }, // 1
{ "3.bin", 0x080000, 0xfbab727f, 1 | BRF_PRG | BRF_ESS }, // 2
{ "4.bin", 0x080000, 0xa08d5838, 1 | BRF_PRG | BRF_ESS }, // 3
{ "copx-d2.u0313", 0x040000, 0xa6732ff9, 2 | BRF_PRG | BRF_OPT }, // 4 COPX MCU data
{ "rdxj_5.u1110", 0x010000, 0x8c46857a, 3 | BRF_PRG | BRF_ESS }, // 5 Z80 Code
{ "rdxj_7.u0724", 0x020000, 0xec31fa10, 4 | BRF_GRA }, // 6 Characters
{ "dx_back-1.u075", 0x200000, 0x90970355, 5 | BRF_GRA }, // 7 Tiles
{ "dx_back-2.u0714", 0x200000, 0x5799af3e, 5 | BRF_GRA }, // 8
{ "raiden_2_seibu_obj-1.u0811", 0x200000, 0xff08ef0b, 6 | BRF_GRA }, // 9 Sprites (Encrypted)
{ "raiden_2_seibu_obj-2.u082", 0x200000, 0x638eb771, 6 | BRF_GRA }, // 10
{ "dx_obj-3.u0837", 0x200000, 0xba381227, 6 | BRF_GRA }, // 11
{ "dx_obj-4.u0836", 0x200000, 0x65e50d19, 6 | BRF_GRA }, // 12
{ "rdxj_6.u1017", 0x040000, 0x9a9196da, 7 | BRF_SND }, // 13 OKI #0 Samples
{ "pcm.u1018", 0x040000, 0x8cf0d17e, 8 | BRF_SND }, // 14 OKI #1 Samples
};
STD_ROM_PICK(raidendxja)
STD_ROM_FN(raidendxja)
struct BurnDriver BurnDrvRaidendxja = {
"raidendxja", "raidendx", NULL, NULL, "1994",
"Raiden DX (Japan, set 2)\0", NULL, "Seibu Kaihatsu", "Miscellaneous",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_CLONE | BDF_ORIENTATION_VERTICAL | BDF_HISCORE_SUPPORTED, 2, HARDWARE_MISC_POST90S, GBF_VERSHOOT, 0,
NULL, raidendxjaRomInfo, raidendxjaRomName, NULL, NULL, RaidendxInputInfo, RaidendxDIPInfo,
RaidendxInit, DrvExit, DrvFrame, DrvDraw, DrvScan, &DrvRecalc, 0x800,
240, 320, 3, 4
};
// Raiden DX (China)
static struct BurnRomInfo raidendxchRomDesc[] = {
@ -3700,10 +3741,10 @@ static struct BurnRomInfo zeroteamRomDesc[] = {
{ "seibu__6.u105.4a", 0x040000, 0x48be32b1, 7 | BRF_SND }, // 12 OKI Samples
{ "v3c001.pal.u0310.jed", 0x288, 0, 0 | BRF_OPT }, // 13 Pals
{ "v3c002.tibpal16l8-25.u0322.jed", 0x288, 0, 0 | BRF_OPT }, // 14
{ "v3c003.ami18cv8p-15.u0619.jed", 0x288, 0, 0 | BRF_OPT }, // 15
{ "v3c004x.ami18cv8pc-25.u0310.jed", 0x288, 0, 0 | BRF_OPT }, // 16
{ "v3c001.pal.u0310.jed", 0x000288, 0x00000000, 8 | BRF_NODUMP }, // 13 pals
{ "v3c002.tibpal16l8-25.u0322.jed", 0x000288, 0x00000000, 8 | BRF_NODUMP }, // 14
{ "v3c003.ami18cv8p-15.u0619.jed", 0x000288, 0x00000000, 8 | BRF_NODUMP }, // 15
{ "v3c004x.ami18cv8pc-25.u0310.jed", 0x000288, 0x00000000, 8 | BRF_NODUMP }, // 16
};
STD_ROM_PICK(zeroteam)

View File

@ -215,6 +215,7 @@
<li>Added clone of Atomic Robo-kid (Japan) [Alex Cmaylo, JacKc]</li>
<li>Added clone of Beast Busters (Japan, Version 2) [ShouTime, JacKc]</li>
<li>Added clone of Mystic Warriors (ver AAB) [Bill D / The Dumping Union, JacKc]</li>
<li>Added clone of Raiden DX (Japan, set 2) [Alex Cmaylo, JacKc]</li>
<li>Updated the NeoGeo driver with the latest Unibios [JacKc]</li>
<!-- new game additions to existing drivers -->
</ul>
@ -223,14 +224,15 @@
<li>Added Fix-it Felix Jr. to the Megadrive driver [dink]</li>
<li>Added Waimanu: Scary Monsters Saga to SMS driver [dink]</li>
<li>Added Wing Force to the Kaneko16 driver [dink]</li>
<li>Added MegaCart support to the Coleco driver [dink]</li>
<li>Added MegaCart support to the Colecovision driver [dink]</li>
<li>Added Princess Quest (MegaCart), Digger and Quest for the Golden Chalice to the Colecovision driver [dink]</li>
<li>Added T*GunII, Chase and Papi CommandoMD to the Megadrive driver [dink]</li>
<li>Added Big's Fishing Derby and Thunderbolt II to Megadrive [dink]</li>
<li>Added FatalSmarties to Megadrive [dink]</li>
<li>Added Big's Fishing Derby and Thunderbolt II to the Megadrive driver [dink]</li>
<li>Added FatalSmarties to the Megadrive driver [dink]</li>
<li>Added '96 Flag Rally to 1945kiii driver [dink]</li>
<li>Added Ozma Wars to the Space Invaders driver [iq_132]</li>
<li>Added Fire Ball (FM Work) to the Legendary Wings driver [iq_132]</li>
<li>Added Unknown Neo-Geo Vs. Fighter (prototype) [Brian Hargrove, JacKc] to the NeoGeo driver</li>
<!-- new drivers -->
</ul>
<h2>New drivers</h2>