Skip to content

Commit

Permalink
neocdz: flag unibioses as optional
Browse files Browse the repository at this point in the history
  • Loading branch information
barbudreadmon committed Jul 31, 2023
1 parent 93ef4f6 commit 7035869
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/burn/drv/neogeo/d_neogeo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2007,11 +2007,11 @@ struct BurnDriver BurnDrvNeoGeoMV4F = {
// Neo Geo CDZ system

static struct BurnRomInfo neocdzRomDesc[] = {
{ "neocdz.bin", 0x080000, 0xDF9DE490, BRF_ESS | BRF_PRG | BRF_BIOS },
{ "neocd-unibios33.bin", 0x080000, 0xff3abc59, BRF_ESS | BRF_PRG | BRF_BIOS }, // by razoola!
{ "neocd-unibios32.bin", 0x080000, 0x0ffb3127, BRF_ESS | BRF_PRG | BRF_BIOS }, // also by razoola!
{ "", 0x000000, 0x00000000, 0 }, // spacer woman, she just wants to love you
{ "000-lo.lo", 0x020000, 0x5a86cff2, BRF_ESS | BRF_PRG | BRF_BIOS },
{ "neocdz.bin", 0x080000, 0xDF9DE490, BRF_ESS | BRF_PRG | BRF_BIOS },
{ "neocd-unibios33.bin", 0x080000, 0xff3abc59, BRF_ESS | BRF_PRG | BRF_BIOS | BRF_OPT }, // by razoola!
{ "neocd-unibios32.bin", 0x080000, 0x0ffb3127, BRF_ESS | BRF_PRG | BRF_BIOS | BRF_OPT }, // also by razoola!
{ "", 0x000000, 0x00000000, 0 }, // spacer woman, she just wants to love you
{ "000-lo.lo", 0x020000, 0x5a86cff2, BRF_ESS | BRF_PRG | BRF_BIOS },
};

STD_ROM_PICK(neocdz)
Expand Down

0 comments on commit 7035869

Please sign in to comment.