d_megadrive.cpp: new hack

This commit is contained in:
Charles32k 2021-02-02 10:42:29 -03:00 committed by GitHub
parent 8f7a5257d0
commit 6a37b5488a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

View File

@ -52334,3 +52334,21 @@ struct BurnDriver BurnDrvmd_wukonge = {
&bMegadriveRecalcPalette, 0x100, 320, 224, 4, 3
};
// Monster World IV - WB 6 (Hack, French)
// http://terminus.romhack.net/index.php?page=jv&projet=wboy + FixChecksum
static struct BurnRomInfo md_mworld4fRomDesc[] = {
{ "Monster World IV - WB 6 (Hack, French).bin", 2097152, 0x1cd6c514, BRF_PRG | SEGA_MD_ROM_LOAD16_WORD_SWAP | SEGA_MD_ROM_OFFS_000000 },
};
STD_ROM_PICK(md_mworld4f)
STD_ROM_FN(md_mworld4f)
struct BurnDriver BurnDrvmd_mworld4f = {
"md_mworld4f", "md_mworld4", NULL, NULL, "1989?",
"Monster World IV - WB 6 (Hack, French)\0", NULL, "Sega", "Sega Megadrive",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_16BIT_ONLY | BDF_CLONE, 2, HARDWARE_SEGA_MEGADRIVE, GBF_MISC, 0,
MegadriveGetZipName, md_mworld4fRomInfo, md_mworld4fRomName, NULL, NULL, NULL, NULL, MegadriveInputInfo, MegadriveDIPInfo,
MegadriveInit, MegadriveExit, MegadriveFrame, MegadriveDraw, MegadriveScan,
&bMegadriveRecalcPalette, 0x100, 320, 224, 4, 3
};