Skip to content

Commit

Permalink
snes, add quinty proto
Browse files Browse the repository at this point in the history
  • Loading branch information
dinkc64 committed Nov 20, 2024
1 parent 51783fe commit 97a6edc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/burn/drv/snes/d_snes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31808,3 +31808,21 @@ struct BurnDriver BurnDrvsnes_Zombies2h = {
512, 448, 4, 3
};

// Quinty

static struct BurnRomInfo snes_QuintyRomDesc[] = {
{ "Quinty (1999)(Game Freak).sfc", 2097152, 0x1225927b, BRF_ESS | BRF_PRG },
};

STD_ROM_PICK(snes_Quinty)
STD_ROM_FN(snes_Quinty)

struct BurnDriver BurnDrvsnes_Quinty = {
"snes_quinty", NULL, NULL, NULL, "1999",
"Quinty (Japan, Prototype)\0", NULL, "Game Freak", "Nintendo",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_PROTOTYPE, 1, HARDWARE_SNES, GBF_MISC, 0,
SNESGetZipName, snes_QuintyRomInfo, snes_QuintyRomName, NULL, NULL, NULL, NULL, SNESInputInfo, SNESDIPInfo,
DrvInit, DrvExit, DrvFrame, DrvDraw, DrvScan, &DrvRecalc, 0x8000,
512, 448, 4, 3
};

0 comments on commit 97a6edc

Please sign in to comment.