dkongte add
This commit is contained in:
parent
8426a89be5
commit
c21934f967
|
@ -4374,6 +4374,46 @@ struct BurnDriver BurnDrvDkchrte = {
|
|||
};
|
||||
|
||||
|
||||
// Donkey Kong Tournament Edition (Hack)
|
||||
|
||||
static struct BurnRomInfo dkongteRomDesc[] = {
|
||||
{ "c_5et_g.bin", 0x01000, 0xba70b88b, 1 }, // 0 maincpu
|
||||
{ "c_5ct_g.bin", 0x01000, 0x5ec461ec, 1 }, // 1
|
||||
{ "c_5bt_g.bin", 0x01000, 0x1c97d324, 1 }, // 2
|
||||
{ "c_5at_g.bin", 0x01000, 0xb9005ac0, 1 }, // 3
|
||||
|
||||
{ "d2k11.te", 0x10000, 0x55fc9018, 2 }, // 4 braze
|
||||
|
||||
{ "s_3i_b.bin", 0x00800, 0x45a4ed06, 2 }, // 4 soundcpu
|
||||
{ "s_3j_b.bin", 0x00800, 0x4743fe92, 2 }, // 5
|
||||
|
||||
{ "v_5h_b.bin", 0x00800, 0x12c8c95d, 3 }, // 6 gfx1
|
||||
{ "v_3pt.bin", 0x00800, 0x15e9c5e9, 3 }, // 7
|
||||
|
||||
{ "l_4m_b.bin", 0x00800, 0x59f8054d, 4 }, // 8 gfx2
|
||||
{ "l_4n_b.bin", 0x00800, 0x672e4714, 4 }, // 9
|
||||
{ "l_4r_b.bin", 0x00800, 0xfeaa59ee, 4 }, // 10
|
||||
{ "l_4s_b.bin", 0x00800, 0x20f2ef7e, 4 }, // 11
|
||||
|
||||
{ "c-2k.bpr", 0x00100, 0xe273ede5, 5 }, // 12 proms
|
||||
{ "c-2j.bpr", 0x00100, 0xd6412358, 5 }, // 13
|
||||
{ "v-5e.bpr", 0x00100, 0xb869b8f5, 5 }, // 14
|
||||
};
|
||||
|
||||
STD_ROM_PICK(dkongte)
|
||||
STD_ROM_FN(dkongte)
|
||||
|
||||
struct BurnDriver BurnDrvDkongte = {
|
||||
"dkongte", "dkong", NULL, "dkong", "2022",
|
||||
"Donkey Kong Tournament Edition (Hack)\0", NULL, "Sock Master", "Miscellaneous",
|
||||
NULL, NULL, NULL, NULL,
|
||||
BDF_GAME_WORKING | BDF_CLONE | BDF_HACK | BDF_ORIENTATION_VERTICAL | BDF_ORIENTATION_FLIPPED | BDF_HISCORE_SUPPORTED, 2, HARDWARE_MISC_PRE90S, GBF_PLATFORM | GBF_ACTION, 0,
|
||||
NULL, dkongteRomInfo, dkongteRomName, NULL, NULL, DkongSampleInfo, DkongSampleName, DkongInputInfo, DkongNoDipDIPInfo,
|
||||
dkongxInit, DrvExit, DrvFrame, dkongDraw, DrvScan, &DrvRecalc, 0x100,
|
||||
224, 256, 3, 4
|
||||
};
|
||||
|
||||
|
||||
// Donkey Kong Spooky Remix (Hack)
|
||||
|
||||
static struct BurnRomInfo dkspkyrmxRomDesc[] = {
|
||||
|
|
Loading…
Reference in New Issue