Author Topic: Knight's Chance ROM suport  (Read 3336 times)

Offline BisonSAS

  • Expert
  • *****
  • Posts: 216
  • Karma: +27/-0
  • [NGBRT]
    • NeoGeo BR Team
Knight's Chance ROM suport
« on: August 02, 2024, 07:37:33 PM »
« Last Edit: August 06, 2024, 02:02:57 AM by BisonSAS »

Offline BisonSAS

  • Expert
  • *****
  • Posts: 216
  • Karma: +27/-0
  • [NGBRT]
    • NeoGeo BR Team
Re: Knight's Chance ROM suport
« Reply #1 on: August 06, 2024, 01:54:44 AM »
After more than a decade I started compiling FB again.
Thanks Mucci for your [TOOL] FB Neo compile script.

Driver:
Code: [Select]
// Knight's Chance
// Neobitz https://www.facebook.com/neobitz

static struct BurnRomInfo knightscRomDesc[] = {
{ "kc_p1.rom",    0x100000, 0xd7ac5077, 1 | BRF_ESS | BRF_PRG }, //  0 68K code

{ "kc_s1.rom",    0x020000, 0xd007e769, 2 | BRF_GRA },           //  1 Text layer tiles

{ "kc_c1.rom",    0x400000, 0x206ca233, 3 | BRF_GRA },           //  2 Sprite data
{ "kc_c2.rom",    0x400000, 0x782437cb, 3 | BRF_GRA },           //  3

{ "kc_m1.rom",    0x020000, 0xaaf76ef5, 4 | BRF_ESS | BRF_PRG }, //  4 Z80 code

{ "kc_v1.rom",    0x800000, 0xb8e55619, 5 | BRF_SND },           //  5 Sound data
};

STDROMPICKEXT(knightsc, knightsc, neogeo)
STD_ROM_FN(knightsc)

struct BurnDriver BurnDrvKnightsc = {
"knightsc", NULL, "neogeo", NULL, "2014",
"Knight's Chance\0", NULL, "Neobitz", "Neo Geo MVS",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_HOMEBREW, 1, HARDWARE_PREFIX_CARTRIDGE | HARDWARE_SNK_NEOGEO, GBF_CASINO, 0,
NULL, knightscRomInfo, knightscRomName, NULL, NULL, NULL, NULL, neogeoInputInfo, neogeoDIPInfo,
NeoInit, NeoExit, NeoFrame, NeoRender, NeoScan, &NeoRecalcPalette,
0x1000, 304, 224, 4, 3
};


Offline barbudreadmon

  • Administrator
  • *****
  • Posts: 1127
  • Karma: +59/-2
  • Helper
Re: Knight's Chance ROM suport
« Reply #2 on: August 06, 2024, 06:10:43 AM »
Sorry for the late answer.
Tbh, with the game being commercial and freshly released, i've mixed feelings about adding this to our official releases.
Note that you can also use the "romdata" method to load it : https://neo-source.com/index.php?topic=4093.0
« Last Edit: August 06, 2024, 06:28:56 AM by barbudreadmon »

Offline BisonSAS

  • Expert
  • *****
  • Posts: 216
  • Karma: +27/-0
  • [NGBRT]
    • NeoGeo BR Team
Re: Knight's Chance ROM suport
« Reply #3 on: August 06, 2024, 07:19:26 AM »
Sorry for the late answer.
Tbh, with the game being commercial and freshly released, i've mixed feelings about adding this to our official releases.

Relax. No problem adding the game. NeoBitz sells the ROM for $16,99 USD

Offline dink

  • Administrator
  • *****
  • Posts: 5102
  • Karma: +454/-1
  • pie? I nearly bought one!
Re: Knight's Chance ROM suport
« Reply #4 on: August 06, 2024, 08:25:39 PM »
Thanks for the rom struct, BisonSAS :)

best regards,
- dink

Offline Joaquim2020

  • Sr. Member
  • ****
  • Posts: 267
  • Karma: +4/-11
Re: Knight's Chance ROM suport
« Reply #5 on: September 16, 2024, 07:16:28 AM »
Thanks!  :eek: