Skip to content

Commit

Permalink
megadrive, add 240p test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
dinkc64 committed Sep 13, 2023
1 parent adb6e30 commit d05628d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/burn/drv/megadrive/d_megadrive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55229,3 +55229,21 @@ struct BurnDriver BurnDrvmd_tkzs = {
&bMegadriveRecalcPalette, 0x100, 320, 224, 4, 3
};

// 240p Test Suite v1.23 by Artemio
// https://artemiourbina.itch.io/240p-test-suite
static struct BurnRomInfo md_testsuite240pRomDesc[] = {
{ "240pSuite-1.23.bin", 262144, 0x439fe2f4, BRF_PRG | SEGA_MD_ROM_LOAD16_WORD_SWAP | SEGA_MD_ROM_OFFS_000000 },
};

STD_ROM_PICK(md_testsuite240p)
STD_ROM_FN(md_testsuite240p)

struct BurnDriver BurnDrvmd_testsuite240p = {
"md_testsuite240p", NULL, NULL, NULL, "2022",
"240p Test Suite (HB, v1.23)\0", NULL, "Artemio", "Sega Megadrive",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_16BIT_ONLY | BDF_CLONE | BDF_HOMEBREW, 2, HARDWARE_SEGA_MEGADRIVE, GBF_MISC, 0,
MegadriveGetZipName, md_testsuite240pRomInfo, md_testsuite240pRomName, NULL, NULL, NULL, NULL, MegadriveInputInfo, MegadriveDIPInfo,
MegadriveInit, MegadriveExit, MegadriveFrame, MegadriveDraw, MegadriveScan,
&bMegadriveRecalcPalette, 0x100, 320, 224, 4, 3
};

0 comments on commit d05628d

Please sign in to comment.