Author Topic: kof2003 PCB BIOS support.  (Read 18007 times)

Offline iq_132

  • Administrator
  • *****
  • Posts: 3728
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
kof2003 PCB BIOS support.
« Reply #15 on: December 17, 2004, 03:08:36 AM »
i'm talking about sp-j3.sp1 crc 3856533F there are only about 10 real diffs between the first 128k of the 271 bios and this.


Offline KingHanco

  • Sr. Member
  • ****
  • Posts: 401
  • Karma: +0/-4
  • "Special " Member
Hmmm...
« Reply #16 on: December 17, 2004, 04:41:55 AM »
Look like 1 protype, 1 master and 1 beta on kof 2003??? :)

Offline JiMMy_PaGe

  • Expert
  • *****
  • Posts: 60
  • Karma: +2/-0
    • SNK-NeoFighters
kof2003 PCB BIOS support.
« Reply #17 on: December 17, 2004, 05:29:33 AM »
Quote from: BisonSAS
Hey Jimmy,
Part 1 128kb it's not the bios japan 6.
112.363 differences found. :eek:

 :cool:

Yeah, i always confuse those bios name xD  :D
Thanks for correct me xD
See ya  :cool:

Offline James33

  • Expert
  • *****
  • Posts: 532
  • Karma: +3/-0
  • The Mame Man
    • Emulation Zone
kof2003 PCB BIOS support.
« Reply #18 on: December 17, 2004, 09:19:35 AM »
Quote from: KingHanco
Look like 1 protype, 1 master and 1 beta on kof 2003??? :)

There not just for kof2003 :)
except for:
BIOS NEO-GEO MVS SYSTEM (JAPAN/J3) Ver. 6 PCB Kof 2003
271-bios.bin -> CRC: C521B5BC
Part 1 128kb CRC: 5172FF3B
IQ Forum Member

Offline FerchogtX

  • FBNeo Dev
  • ******
  • Posts: 375
  • Karma: +7/-0
  • FB Alpha Team ;)
    • FB Alpha Plus! Web Site
kof2003 PCB BIOS support.
« Reply #19 on: December 17, 2004, 11:55:13 AM »
BIOS for kof2003 has different CRC and info because has support for the zoom effect and other instructions for the game, so this bios is the real decrypted japan version for kof2003 PCB, one of the other bios can have the same data because are normal MVS BIOS
See ya!!!!!! :D

Good and evil co-exist because of the balance, lies are not part of it...

FB Alpha Plus! site infos updated, see the latest info clicking on my profile link...

Offline bms888

  • Jr. Member
  • **
  • Posts: 93
  • Karma: +0/-0
  • Member
kof2003 PCB BIOS support.
« Reply #20 on: December 18, 2004, 01:33:27 AM »
My kof2003 pcb bios support code,can play with all Region(JAP/USA/EURO) and all mode(MVS & AES), don't use any hack bios,^_^

Code: [Select]

static struct BurnRomInfo neokof03RomDesc[] = {
{"271-osjd.bin",0x040000, 0xC521B5BC, 0xD0}, //  0 68K BIOS (JP/AS, MVS)
{"usa_2slt.bin",0x020000, 0xE72943DE, 0xD0}, //  1 68K BIOS (US, MVS, 2 slot, version 2)
{"sp-s2.sp1", 0x020000, 0x9036D879, 0xD0}, //  2 68K BIOS (AS, MVS, 1 slot, version 2)
{"", 0, 0, 0},
{"", 0, 0, 0},
{"", 0, 0, 0},
{"aes-bios.bin",0x020000, 0xD27A71F1, 0xD0}, // 6 68K BIOS (AS, AES)
{"", 0, 0, 0},

{"neodebug.bin",0x020000, 0x698EBB7D, 0xD0}, //  8 68K BIOS (JP, devkit)
{"", 0, 0, 0},
{"", 0, 0, 0},
{"", 0, 0, 0},
{"uni-bios.20", 0x020000, 0x0c12c2ad, 0xD0}, //  C Universe BIOS (v2.0)
{"", 0, 0, 0},
{"", 0, 0, 0},
{"", 0, 0, 0},

{"sm1.sm1", 0x020000, 0x97Cf998B, 0x10}, // 10 Z80 program
{"", 0, 0, 0},
{"", 0, 0, 0},
{"", 0, 0, 0},

{"sfix.sfx", 0x020000, 0x354029FC, 1}, // 14 Text layer tiles
{"", 0, 0, 0},
{"", 0, 0, 0},
{"", 0, 0, 0},

{"000-lo.lo", 0x010000, 0xE09E253C,    1}, // 18 Zoom table
};

STD_ROM_PICK(neokof03);
STD_ROM_FN(neokof03);


Code: [Select]
STDROMPICKEXT(kof2003, kof2003, [COLOR=Blue]neokof03[/COLOR]);
STD_ROM_FN(kof2003);