Skip to content

Commit

Permalink
add something to d_snes
Browse files Browse the repository at this point in the history
  • Loading branch information
dinkc64 committed Nov 17, 2024
1 parent 13c5e97 commit e7fbc10
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions src/burn/drv/snes/d_snes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29463,6 +29463,44 @@ struct BurnDriver BurnDrvsnes_Ys4te = {
512, 448, 4, 3
};

// Yuu Yuu Hakusho

static struct BurnRomInfo snes_YuuyuuhakushoRomDesc[] = {
{ "Yuu Yuu Hakusho (1993)(Namcot).sfc", 2097152, 0xec96d517, BRF_ESS | BRF_PRG },
};

STD_ROM_PICK(snes_Yuuyuuhakusho)
STD_ROM_FN(snes_Yuuyuuhakusho)

struct BurnDriver BurnDrvsnes_Yuuyuuhakusho = {
"snes_yuuyuuhakusho", NULL, NULL, NULL, "1993",
"Yuu Yuu Hakusho (Japan)\0", NULL, "Namcot", "Nintendo",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING, 2, HARDWARE_SNES, GBF_VSFIGHT, 0,
SNESGetZipName, snes_YuuyuuhakushoRomInfo, snes_YuuyuuhakushoRomName, NULL, NULL, NULL, NULL, SNESInputInfo, SNESDIPInfo,
DrvInit, DrvExit, DrvFrame, DrvDraw, DrvScan, &DrvRecalc, 0x8000,
512, 480, 4, 3
};

// Yuu Yuu Hakusho Final - Makai Saikyou Retsuden

static struct BurnRomInfo snes_YuuyuuhakushofinalRomDesc[] = {
{ "Yuu Yuu Hakusho Final - Makai Saikyou Retsuden (1995)(Namcot).sfc", 3145728, 0x5617a42e, BRF_ESS | BRF_PRG },
};

STD_ROM_PICK(snes_Yuuyuuhakushofinal)
STD_ROM_FN(snes_Yuuyuuhakushofinal)

struct BurnDriver BurnDrvsnes_Yuuyuuhakushofinal = {
"snes_yuuyuuhakushofinal", NULL, NULL, NULL, "1995",
"Yuu Yuu Hakusho Final - Makai Saikyou Retsuden (Japan)\0", NULL, "Namcot", "Nintendo",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING, 2, HARDWARE_SNES, GBF_VSFIGHT, 0,
SNESGetZipName, snes_YuuyuuhakushofinalRomInfo, snes_YuuyuuhakushofinalRomName, NULL, NULL, NULL, NULL, SNESInputInfo, SNESDIPInfo,
DrvInit, DrvExit, DrvFrame, DrvDraw, DrvScan, &DrvRecalc, 0x8000,
512, 480, 4, 3
};

// Yuu Yuu Hakusho 2 - Kakutou no Shou (Japan)

static struct BurnRomInfo snes_Yuuyuuhak2jRomDesc[] = {
Expand Down

0 comments on commit e7fbc10

Please sign in to comment.