Skip to content

Commit

Permalink
Merge pull request #1933 from finalburnneo/arcadez2003-patch-1
Browse files Browse the repository at this point in the history
Add the MVS cart version of Captain Barrel (NeoByteForce)
  • Loading branch information
arcadez2003 authored Dec 30, 2024
2 parents 637295f + f9061c8 commit 333b9ca
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/burn/drv/neogeo/d_neogeo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28377,3 +28377,35 @@ struct BurnDriver BurnDrvKnightsch = {
NeoInit, NeoExit, NeoFrame, NeoRender, NeoScan, &NeoRecalcPalette,
0x1000, 304, 224, 4, 3
};

// Captain Barrel
// Neo Byte Force Ltd
// https://www.neobyteforce.com/

static struct BurnRomInfo captainbarrelRomDesc[] = {
{ "captain-p1.bin", 0x100000", 0x6da1737d, 1 | BRF_ESS | BRF_PRG }, // 0 68K code
{ "captain-p2.bin", 0x100000", 0xf6f90237, 1 | BRF_ESS | BRF_PRG }, // 1

{ "captain-s1.bin", 0x020000, 0x9785df9c, 2 | BRF_GRA }, // 2 Text layer tiles

{ "captain-c1.bin", 0x200000, 0xbce671cd, 3 | BRF_GRA }, // 3 Sprite data
{ "captain-c2.bin", 0x200000, 0x843e16ac, 3 | BRF_GRA }, // 4

{ "captain-m1.bin", 0x010000, 0xed6260d2, 4 | BRF_ESS | BRF_PRG }, // 5 Z80 code

{ "captain-v1.bin", 0x800000, 0x8cfcceb7, 5 | BRF_SND }, // 6 Sound data
{ "captain-v2.bin", 0x800000, 0xd1080962, 5 | BRF_SND }, // 6 Sound data
};

STDROMPICKEXT(captainbarrel, captainbarrel, neogeo)
STD_ROM_FN(captainbarrel)

struct BurnDriver BurnDrvCaptainBarrel = {
"captainbarrel", NULL, "neogeo", NULL, "2024",
"Captain Barrel\0", NULL, "Neo Byte Force Ltd.", "Neo Geo MVS",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_HOMEBREW, 2, HARDWARE_PREFIX_CARTRIDGE | HARDWARE_SNK_NEOGEO, GBF_PLATFORM, 0,
NULL, captainbarrelRomInfo, captainbarrelRomName, NULL, NULL, NULL, NULL, neogeoInputInfo, neogeoDIPInfo,
NeoInit, NeoExit, NeoFrame, NeoRender, NeoScan, &NeoRecalcPalette,
0x1000, 320, 224, 4, 3
};

0 comments on commit 333b9ca

Please sign in to comment.