Jump to content

King of Fighters Special Editon 2004


N3oGhost

Recommended Posts

  • Replies 150
  • Created
  • Last Reply

Top Posters In This Topic

Another Mame driver for this Game

 

I hope GC fixes the quote and code As its not showing how it is in the Mame drivers as its important that it is copied the same way it is meant to be in the Mame driver. No doubt its his auto remove spaces thats causeing this problem.

 

src\driver.c

DRIVER( kf2k4spe )	/* 0265 © 2004 Dragon Co */

 

 

src\drivers\neogeo.c

ROM_START( kf2k4spe )
ROM_REGION( 0x500000, REGION_CPU1, 0 )
ROM_LOAD16_WORD_SWAP( "k2k4s-p2.bin", 0x000000, 0x080000, CRC(21a84084) SHA1(973e8a0bffa0e1f055803f663f81a8e03701802d) )
ROM_LOAD16_WORD_SWAP( "k2k4s-p3.bin", 0x080000, 0x080000, CRC(febb484e) SHA1(4b1838795b84f22d578ad043641df0a7bf7d9774) )
ROM_LOAD16_WORD_SWAP( "k2k4s-p1.bin", 0x100000, 0x400000, CRC(e6c50566) SHA1(cc6a3489a3bfeb4dcc65b6ddae0030f7e66fbabe) )

NEO_SFIX_128K( "k2k4s-s1.bin", CRC(a3c9b2d8) SHA1(1472d2cbd7bb73e84824ecf773924007e6117e77) )

NEO_BIOS_SOUND_128K( "k2k4s-m1.bin", CRC(5a47d9ad) SHA1(0197737934653acc6c97221660d789e9914f3578) )

ROM_REGION( 0x1000000, REGION_SOUND1, ROMREGION_SOUNDONLY )
ROM_LOAD( "k2k4s-v2.bin", 0x000000, 0x800000, CRC(e4ddfb3f) SHA1(eb8220ab01c16cf9244b7f3f9912bec0db561b85) )
ROM_LOAD( "k2k4s-v1.bin", 0x800000, 0x800000, CRC(b887d287) SHA1(f593a5722df6f6fac023d189a739a117e976bb2f) )

NO_DELTAT_REGION

ROM_REGION( 0x4000000, REGION_GFX3, 0 )
ROM_LOAD16_BYTE( "k2k4s-c4.bin", 0x0000000, 0x800000, CRC(7a050288) SHA1(55a20c5b01e11a859f096af3f8e09986025d288f) ) /* Plane 0,1 */ 
ROM_LOAD16_BYTE( "k2k4s-c8.bin", 0x0000001, 0x800000, CRC(e924afcf) SHA1(651e974f7339d2cdcfa58c5398013197a0525b77) ) /* Plane 2,3 */
ROM_LOAD16_BYTE( "k2k4s-c3.bin", 0x1000000, 0x800000, CRC(959fad0b) SHA1(63ab83ddc5f688dc8165a7ff8d262df3fcd942a2) ) /* Plane 0,1 */
ROM_LOAD16_BYTE( "k2k4s-c7.bin", 0x1000001, 0x800000, CRC(efe6a468) SHA1(2a414285e48aa948b5b0d4a9333bab083b5fb853) ) /* Plane 2,3 */
ROM_LOAD16_BYTE( "k2k4s-c2.bin", 0x2000000, 0x800000, CRC(74bba7c6) SHA1(e01adc7a4633bc0951b9b4f09abc07d728e9a2d9) ) /* Plane 0,1 */
ROM_LOAD16_BYTE( "k2k4s-c6.bin", 0x2000001, 0x800000, CRC(e20d2216) SHA1(5d28eea7b581e780b78f391a8179f1678ee0d9a5) ) /* Plane 2,3 */
ROM_LOAD16_BYTE( "k2k4s-c1.bin", 0x3000000, 0x800000, CRC(fa705b2b) SHA1(f314c66876589601806352484dd8e45bc41be692) ) /* Plane 0,1 */
ROM_LOAD16_BYTE( "k2k4s-c5.bin", 0x3000001, 0x800000, CRC(2c912ff9) SHA1(b624a625ea3e221808b7ea43fb0b1a51d8c1853e) ) /* Plane 2,3 */
ROM_END



DRIVER_INIT( kf2k4spe )
{
UINT8 *src = memory_region(REGION_CPU1)+0x100000;
UINT8 *dst = malloc(0x400000);
unsigned int sec[] = {0x300000,0x200000,0x100000,0x000000};
if (dst)
{
 memcpy(dst,src,0x400000);

 for(int i = 0; i < 4; ++i)
 {
 	memcpy(src+i*0x100000,dst+sec[i],0x100000);
 }
 free(dst);
}
init_neogeo();
}

 

GAMEB( 2004, kf2k4spe, kof2002,  neogeo, neogeo, neogeo,  kf2k4spe, ROT0, "Drogon CO", "The King of Fighters 2004 Special Edition (Hack)" )

Edited by James
Link to comment
Share on other sites

The one I got has different roms so it doesn't work in kawaks.

 

 

*edit* sorry samurai edge, you asked me a question.

 

It ran at about 40-45fps on my 333mhz win95. It runs quite

well, no sound jumping or anything. I'm no gamer (I like getting

things to work) so i can't say if it's a good game or not.

Edited by robbbert
Link to comment
Share on other sites

The one I got has different roms so it doesn't work in kawaks.

 

 

*edit* sorry samurai edge, you asked me a question.

 

It ran at about 40-45fps on my 333mhz win95. It runs quite

well, no sound jumping or anything. I'm no gamer (I like getting

things to work) so i can't say if it's a good game or not.

 

the best method of testing the speed is to play with the fps hungry games., like Metal Slug 3 and KOF98 (yes theyre old, but those pushes the neogeo hardware more than anything recent).

 

as for kof2k4se, if you like kof2002, youll feel right at home because nothing changed gameplay-wise (unless boobies and nudies changes the way you play ;)). more of a novelty item for collection.

Edited by Xeon
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...