KOF 97 Combo hack with Random Select [Combone]

This commit is contained in:
dinkc64 2019-07-27 08:43:50 -04:00
parent 41b216621d
commit a75f231451
1 changed files with 36 additions and 0 deletions

View File

@ -17823,3 +17823,39 @@ struct BurnDriver BurnDrvkof97t = {
kof97tInit, NeoExit, NeoFrame, NeoRender, NeoScan, &NeoRecalcPalette,
0x1000, 304, 224, 4, 3
};
// The King of Fighters '97 - Random Combo Version 2010 (Hack)
// *IVEX KOF 97 COMBO HACK WITH RANDOM SELECT* //
static struct BurnRomInfo kof97rcRomDesc[] = {
{ "232-rc.p1", 0x100000, 0x1d476235, 1 | BRF_ESS | BRF_PRG }, // 0 68K code
{ "232-rc.sp2", 0x400000, 0x406e4a4b, 1 | BRF_ESS | BRF_PRG }, // 1
{ "232-rc.s1", 0x020000, 0xd4957067, 2 | BRF_GRA }, // 2 Text layer tiles
{ "232-rc.c1", 0x800000, 0xe2fe7d7a, 3 | BRF_GRA }, // 3 Sprite data
{ "232-rc.c2", 0x800000, 0xd0746893, 3 | BRF_GRA }, // 4
{ "232-c3.c3", 0x800000, 0x581d6618, 3 | BRF_GRA }, // 5
{ "232-c4.c4", 0x800000, 0x49bb1e68, 3 | BRF_GRA }, // 6
{ "232-c5.c5", 0x400000, 0x34fc4e51, 3 | BRF_GRA }, // 7
{ "232-c6.c6", 0x400000, 0x4ff4d47b, 3 | BRF_GRA }, // 8
{ "232-m1.m1", 0x020000, 0x45348747, 4 | BRF_ESS | BRF_PRG }, // 9 Z80 code
{ "232-v1.v1", 0x400000, 0x22a2b5b5, 5 | BRF_SND }, // 10 Sound data
{ "232-v2.v2", 0x400000, 0x2304e744, 5 | BRF_SND }, // 11
{ "232-v3.v3", 0x400000, 0x759eb954, 5 | BRF_SND }, // 12
};
STDROMPICKEXT(kof97rc, kof97rc, neogeo)
STD_ROM_FN(kof97rc)
struct BurnDriver BurnDrvkof97rc = {
"kof97rc", "kof97", "neogeo", NULL, "2019",
"The King of Fighters '97 - Random Combo (Hack, Ver. 2010)\0", NULL, "hack", "Neo Geo MVS",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_CLONE | BDF_HACK, 2, HARDWARE_PREFIX_CARTRIDGE | HARDWARE_SNK_NEOGEO, GBF_VSFIGHT, FBF_KOF,
NULL, kof97rcRomInfo, kof97rcRomName, NULL, NULL, NULL, NULL, neogeoInputInfo, neogeoDIPInfo,
NeoInit, NeoExit, NeoFrame, NeoRender, NeoScan, &NeoRecalcPalette,
0x1000, 304, 224, 4, 3
};