Skip to content

Commit

Permalink
speccy update from gab75
Browse files Browse the repository at this point in the history
  • Loading branch information
dinkc64 committed Aug 1, 2023
1 parent dea3180 commit 6896174
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion src/burn/drv/spectrum/d_spectrum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26154,12 +26154,50 @@ struct BurnDriver BurnSpecSkatecrazy = {
"spec_skatecrazy", NULL, "spec_spec128", NULL, "1988",
"Skate Crazy (128K)\0", NULL, "Gremlin Graphics", "ZX Spectrum",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING, 2, HARDWARE_SPECTRUM, GBF_ACTION, 0,
BDF_GAME_WORKING, 2, HARDWARE_SPECTRUM, GBF_ACTION | GBF_PLATFORM, 0,
SpectrumGetZipName, SpecSkatecrazyRomInfo, SpecSkatecrazyRomName, NULL, NULL, NULL, NULL, SpecInputInfo, SpecDIPInfo,
Spec128KInit, SpecExit, SpecFrame, SpecDraw, SpecScan,
&SpecRecalc, 0x10, 288, 224, 4, 3
};

// Skate Crazy - Part 1 (48K-128K)

static struct BurnRomInfo SpecSkatecrazy1RomDesc[] = {
{ "Skate Crazy - Part 1 (1988)(Gremlin Graphics).z80", 50655, 0x16add75c, BRF_ESS | BRF_PRG },
};

STDROMPICKEXT(SpecSkatecrazy1, SpecSkatecrazy1, Spec128)
STD_ROM_FN(SpecSkatecrazy1)

struct BurnDriver BurnSpecSkatecrazy1 = {
"spec_skatecrazy1", "spec_skatecrazy", "spec_spec128", NULL, "1988",
"Skate Crazy - Part 1 (48K-128K)\0", "Z80 memory snapshot version", "Gremlin Graphics", "ZX Spectrum",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_CLONE, 2, HARDWARE_SPECTRUM, GBF_ACTION, 0,
SpectrumGetZipName, SpecSkatecrazy1RomInfo, SpecSkatecrazy1RomName, NULL, NULL, NULL, NULL, SpecInputInfo, SpecDIPInfo,
Spec128KInit, SpecExit, SpecFrame, SpecDraw, SpecScan,
&SpecRecalc, 0x10, 288, 224, 4, 3
};

// Skate Crazy - Part 2 (48K)

static struct BurnRomInfo SpecSkatecrazy2RomDesc[] = {
{ "Skate Crazy - Part 2 (1988)(Gremlin Graphics).z80", 35524, 0x82d5426e, BRF_ESS | BRF_PRG },
};

STDROMPICKEXT(SpecSkatecrazy2, SpecSkatecrazy2, Spectrum)
STD_ROM_FN(SpecSkatecrazy2)

struct BurnDriver BurnSpecSkatecrazy2 = {
"spec_skatecrazy2", "spec_skatecrazy", "spec_spectrum", NULL, "1988",
"Skate Crazy - Part 2 (48K)\0", "Z80 memory snapshot version", "Gremlin Graphics", "ZX Spectrum",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_CLONE, 2, HARDWARE_SPECTRUM, GBF_PLATFORM, 0,
SpectrumGetZipName, SpecSkatecrazy2RomInfo, SpecSkatecrazy2RomName, NULL, NULL, NULL, NULL, SpecInputInfo, SpecDIPInfo,
SpecInit, SpecExit, SpecFrame, SpecDraw, SpecScan,
&SpecRecalc, 0x10, 288, 224, 4, 3
};

// Homebrew Games (Post-2000)
// Hereunder put only the HB ZX Spectrum games

Expand Down

0 comments on commit 6896174

Please sign in to comment.