Jump to content

tiger1020x

Members+
  • Posts

    50
  • Joined

  • Last visited

Everything posted by tiger1020x

  1. AoHell is very resource hungry and generally unaccptable.. i always tell my clients when doing consulting to seek an alternative...
  2. it's sort of off topic but i was wondering if you had the neo_pcm2_swap routine i have kof2km2 running on robbberts driver minus the text and used a neo_pcm2_playmore routine thinking it was close..game does run and crc32 checksums are correct...
  3. i'm curious did you guys find patches or actual roms for these games?
  4. More importantly, why cheat in games in the first place? <{POST_SNAPBACK}> because i'ts fairly interesting to burn an edited iso,secondly epsxe has no cheat engine in linux and finally because i lost my save state and don't want to play silent hill again to get back to a "next fear game"
  5. yeah i already knew about that one but thank you for posting..
  6. greetings all i am in search of a good psx iso patch site to add trainers into my iso's any one know any?
  7. back at you bro.. src/drivers/neogeo.c ROM_START( ms5plus ) ROM_REGION( 0x500000, REGION_CPU1, 0 ) ROM_LOAD16_WORD_SWAP( "p1.bin", 0x000000, 0x100000, CRC(106b276f) ) ROM_LOAD16_WORD_SWAP( "p2.bin", 0x100000, 0x200000, CRC(d6a458e8) ) ROM_LOAD16_WORD_SWAP( "p3.bin", 0x300000, 0x200000, CRC(439ec031) ) ROM_REGION( 0x20000, REGION_GFX1, 0 ) ROM_LOAD("268-s1p.bin", 0x000000, 0x20000, CRC(c82e57ad) ) ROM_REGION( 0x20000, REGION_GFX2, 0 ) ROM_LOAD( "sfix.sfx", 0x000000, 0x20000, CRC(354029fc) SHA1(4ae4bf23b4c2acff875775d4cbff5583893ce2a1) ) ROM_REGION( 0x20000, REGION_USER4, 0 ) NEO_BIOS_SOUND_128K( "268-m1d.bin", CRC(6fa01c9a) ) ROM_REGION( 0x1000000, REGION_SOUND1, ROMREGION_SOUNDONLY ) ROM_LOAD( "268-v1d.bin", 0x000000, 0x800000, CRC(0ab43275) ) ROM_LOAD( "268-v2d.bin", 0x800000, 0x800000, CRC(358b1419) ) NO_DELTAT_REGION ROM_REGION( 0x4000000, REGION_GFX3, 0 ) ROM_LOAD16_BYTE( "ms5n_c1.rom", 0x0000000, 0x800000, CRC(969c0d62) ) ROM_LOAD16_BYTE( "ms5n_c2.rom", 0x0000001, 0x800000, CRC(c69ae867) ) ROM_LOAD16_BYTE( "ms5n_c3.rom", 0x1000000, 0x800000, CRC(d7beaeaf) ) ROM_LOAD16_BYTE( "ms5n_c4.rom", 0x1000001, 0x800000, CRC(e1b1131b) ) ROM_LOAD16_BYTE( "ms5n_c5.rom", 0x2000000, 0x800000, CRC(2fa1a5ad) ) ROM_LOAD16_BYTE( "ms5n_c6.rom", 0x2000001, 0x800000, CRC(6de89589) ) ROM_LOAD16_BYTE( "ms5n_c7.rom", 0x3000000, 0x800000, CRC(97bd0c0a) ) ROM_LOAD16_BYTE( "ms5n_c8.rom.", 0x3000001, 0x800000, CRC(c0d5bc20) ) ROM_END DRIVER_INIT ( ms5plus ) { UINT8 *dst = malloc(0x20000); UINT8 *roms1 = (memory_region(REGION_GFX1)); int j; if ( dst ) { memcpy(dst,roms1,0x20000); // descrambling the S1 by dorriGa for (j=0;j<0x20000 ; j+=0x000010) { memcpy( roms1+j, dst+j+0x000008,; memcpy( roms1+j+0x000008, dst+j,; } } free( dst ); neogeo_fix_bank_type = 1; init_neogeo(); } GAMEB( 2003, ms5plus, mslug5, neogeo, neogeo, neogeo, ms5plus, ROT0, "SNK Playmore", "Metal Slug 5 Plus! (bootleg)" ) src/machine/neogeo.c static WRITE16_HANDLER ( ms5plus_bankswitch_w ) { /* thanks to fataku for the info */ unsigned char *RAM = memory_region(REGION_CPU1); int bankaddress; logerror("offset: %06x PC %06x: set banking %04x\n",offset,activecpu_get_pc(),data); if ((offset == 0)&&(data == 0xa0)) { bankaddress=0xa0; cpu_setbank(4,&RAM[bankaddress]); //neogeo_set_cpu1_second_bank(bankaddress); logerror("offset: %06x PC %06x: set banking %04x\n\n",offset,activecpu_get_pc(),bankaddress); } else if(offset == 2) { data=data>>4; //data=data&7; bankaddress=data*0x100000; cpu_setbank(4,&RAM[bankaddress]); //neogeo_set_cpu1_second_bank(bankaddress); logerror("offset: %06x PC %06x: set banking %04x\n\n",offset,activecpu_get_pc(),bankaddress); } } put it individual games can go here (before kludges) if (!strcmp(Machine->gamedrv->name,"ms5plus") ) { // special ROM banking handler memory_install_write16_handler(0, ADDRESS_SPACE_PROGRAM, 0x2ffff0, 0x2fffff,0,0, ms5plus_bankswitch_w); hope that works for you.. cheers
  8. Yes the driver is in Mame Plus. <{POST_SNAPBACK}> could you post it by chance?
  9. absolutely james of course.. however i think i may drop the ball on this particular driver and it's caused enuff of your time check pm <{POST_SNAPBACK}> Ok The src I will send you is from Mame Plus since that where I add all the hacks too. <{POST_SNAPBACK}> Dammit i thought i was done.. i did check around on the net first as well as attemped on my own..just for reference.. however i was wondering if anyone had dinoh for cps1..
  10. for future reference in the recovery console its fixmbr and fixboot.. but once you reformat all is gone.. as far as server 2003 is concerned, once installed it's not very good at all like all other ms products.. if you do get it installed expect yourself to be looking for netcard drivers and sound card drivers.. if you want to try with a new os o got bored with xp, you could try an open source live cd that won't require any harddrive install....if you want to run a webserver look into apache its free and will do the job fine on xp..
  11. I decided to break down and write this because i remember all the headache i went through when i first switched to linux. the constant rebooting into windows and all the hours searching on the net just to get all my roms to stop eating hardrive space and be put to use so here goes... Your first option if you have a bit of pc knowledge is compiling your own xmame... which is well worth it if you have the time...and plus you can mock those win32 users by playing your svcplus in opengl !!! it also has different ports and choices of video modes,such as sdl x11 dga and xv.. you can also play your xmame in text mode if you so desire..but like mame you must add your own drivers... xmame can be found at http//x.mame.net Another option for those of you with slower pc's or that don't want to recompile and add drivers is gngeo. Gngeo is very much like winkawaks and neorage.. but unlike these you need no "special" version or older hacked loader.. The latest beta2 is already supports all the newer kof's including 3 kof2003 versions, the newer Metal Slug games... etc.. this emulator is very fast and is said to run faster than neorage...it is also open source so you can customise it to your needs.. and yes you can taunt the windows users with it also by playing your games in opengl.. it even supports adding games very much like that of nebula and winkawaks..this can be accomplished with a "romrc" file which is very simular to nebula, winkawaks dats... with this particular emulator its a good idea to use decrypted neogeo sets or neorage ones... heres some extra games i added to mine... game mslug5 MVS "Metal Slug 5" CPU 0x600000 ms5_p1.rom 0x0 0x600000 NORM END SFIX 0x20000 ms5n_s1.rom 0x0 0x20000 NORM END SOUND1 0x1000000 ms5_v1.rom 0x0 0x400000 NORM ms5_v2.rom 0x400000 0x400000 NORM ms5_v3.rom 0x800000 0x400000 NORM ms5_v4.rom 0xc00000 0x400000 NORM END SM1 0x20000 ms5_m1.rom 0x0 0x20000 NORM END GFX 0x4000000 ms5n_c1.rom 0x0 0x800000 ALTERNATE ms5n_c2.rom 0x1 0x800000 ALTERNATE ms5n_c3.rom 0x1000000 0x800000 ALTERNATE ms5n_c4.rom 0x1000001 0x800000 ALTERNATE ms5n_c5.rom 0x2000000 0x800000 ALTERNATE ms5n_c6.rom 0x2000001 0x800000 ALTERNATE ms5n_c7.rom 0x3000000 0x800000 ALTERNATE ms5n_c8.rom 0x3000001 0x800000 ALTERNATE END END game samsho5sp MVS "Samurai Shodown 5 Special" SM1 0x20000 272d-m1.rom 0x0 0x20000 NORM END SFIX 0x20000 272d-s1.rom 0x0 0x20000 NORM END CPU 0x800000 272d-p1.rom 0x0 0x800000 NORM END SOUND1 0x1000000 272d-v1.rom 0x0 0x400000 NORM 272d-v2.rom 0x400000 0x400000 NORM 272d-v3.rom 0x800000 0x400000 NORM 272d-v4.rom 0xc00000 0x400000 NORM END GFX 0x4000000 272d-c1.rom 0x0 0x800000 ALTERNATE 272d-c2.rom 0x1 0x800000 ALTERNATE 272d-c3.rom 0x1000000 0x800000 ALTERNATE 272d-c4.rom 0x1000001 0x800000 ALTERNATE 272d-c5.rom 0x2000000 0x800000 ALTERNATE 272d-c6.rom 0x2000001 0x800000 ALTERNATE 272d-c7.rom 0x3000000 0x800000 ALTERNATE 272d-c8.rom 0x3000001 0x800000 ALTERNATE END END game kof2k1rp MVS "The King of Fighters 2001 plus" SFIX 0x20000 kof2k1rp_s1.rom 0x0 0x20000 NORM END SM1 0x40000 kof2k1rp_m1.rom 0x0 0x40000 NORM END SOUND1 0x1000000 kof2k1rp_v1.rom 0x0 0x400000 NORM kof2k1rp_v2.rom 0x400000 0x400000 NORM kof2k1rp_v3.rom 0x800000 0x400000 NORM kof2k1rp_v4.rom 0xc00000 0x400000 NORM END CPU 0x500000 kof2k1rp_p1.rom 0x0 0x100000 NORM kof2k1rp_p2.rom 0x100000 0x400000 NORM END GFX 0x4000000 kof2k1rp_c1.rom 0x0000000 0x800000 ALTERNATE kof2k1rp_c2.rom 0x0000001 0x800000 ALTERNATE kof2k1rp_c3.rom 0x1000000 0x800000 ALTERNATE kof2k1rp_c4.rom 0x1000001 0x800000 ALTERNATE kof2k1rp_c5.rom 0x2000000 0x800000 ALTERNATE kof2k1rp_c6.rom 0x2000001 0x800000 ALTERNATE kof2k1rp_c7.rom 0x3000000 0x800000 ALTERNATE kof2k1rp_c8.rom 0x3000001 0x800000 ALTERNATE END END game cthd2003 MVS "Crouching Tiger Hidden Dragon " SFIX 0x20000 5003-s1d.bin 0x0 0x20000 NORM END SM1 0x40000 5003-m1d.bin 0x0 0x40000 NORM END SOUND1 0x1000000 262-v2.rom 0x0 0x400000 NORM 262-v2.bin 0x400000 0x400000 NORM 262-v3.rom 0x800000 0x400000 NORM 262-v4.rom 0xc00000 0x400000 NORM END CPU 0x500000 5003-p1d.bin 0x0 0x100000 NORM 5003-p2d.bin 0x100000 0x400000 NORM END GFX 0x4000000 5003-c1d.bin 0x0000000 0x800000 ALTERNATE 5003-c2d.bin 0x0000001 0x800000 ALTERNATE 5003-c3d.bin 0x1000000 0x800000 ALTERNATE 5003-c4d.bin 0x1000001 0x800000 ALTERNATE 5003-c5d.bin 0x2000000 0x800000 ALTERNATE 5003-c6d.bin 0x2000001 0x800000 ALTERNATE 5003-c7d.bin 0x3000000 0x800000 ALTERNATE 5003-c8d.bin 0x3000001 0x800000 ALTERNATE END END game kof2k2pls MVS "The King of Fighter 2002 plus" SFIX 0x20000 kof2k2p_s1.rom 0x0 0x20000 NORM END SM1 0x40000 kof2k2p_m1.rom 0x0 0x40000 NORM END SOUND1 0x1000000 kof2k2p_v1.rom 0x0 0x400000 NORM kof2k2p_v2.rom 0x400000 0x400000 NORM kof2k2p_v3.rom 0x800000 0x400000 NORM kof2k2p_v4.rom 0xc00000 0x400000 NORM END CPU 0x500000 kof2k2p_p1.rom 0x0 0x100000 NORM kof2k2p_p2.rom 0x100000 0x400000 NORM END GFX 0x4000000 kof2k2p_c1.rom 0x0000000 0x800000 ALTERNATE kof2k2p_c2.rom 0x0000001 0x800000 ALTERNATE kof2k2p_c3.rom 0x1000000 0x800000 ALTERNATE kof2k2p_c4.rom 0x1000001 0x800000 ALTERNATE kof2k2p_c5.rom 0x2000000 0x800000 ALTERNATE kof2k2p_c6.rom 0x2000001 0x800000 ALTERNATE kof2k2p_c7.rom 0x3000000 0x800000 ALTERNATE kof2k2p_c8.rom 0x3000001 0x800000 ALTERNATE END END game kof2k4es MVS "The King of Fighters 2004 hack" SFIX 0x20000 2k4-s1.rom 0x0 0x20000 NORM END SM1 0x40000 2k4-m1.rom 0x0 0x40000 NORM END SOUND1 0x1000000 2k4-v1.rom 0x0 0x400000 NORM 2k4-v2.rom 0x400000 0x400000 NORM 2k4-v3.rom 0x800000 0x400000 NORM 2k4-v4.rom 0xc00000 0x400000 NORM END CPU 0x500000 2k4-p1.rom 0x0 0x100000 NORM 2k4-p2.rom 0x100000 0x400000 NORM END GFX 0x4000000 2k4-c1.rom 0x0000000 0x800000 ALTERNATE 2k4-c2.rom 0x0000001 0x800000 ALTERNATE 2k4-c3.rom 0x1000000 0x800000 ALTERNATE 2k4-c4.rom 0x1000001 0x800000 ALTERNATE 2k4-c5.rom 0x2000000 0x800000 ALTERNATE 2k4-c6.rom 0x2000001 0x800000 ALTERNATE 2k4-c7.rom 0x3000000 0x800000 ALTERNATE 2k4-c8.rom 0x3000001 0x800000 ALTERNATE END END gngeo can be found at http://m.peponas.free.fr/gngeo/ Our third option is runnning neoragex in linux (huh in linux?) yes you can run neorage buy using the wine emulator.... wine is a windows emulator and works with neoragex... in example in command prompt wine./neoragex..poof an emulator running an emulator just remember to use the command xrandr -s 0 to get your screen back to its regular resolution as far as patching roms with ips patches there is a script just for that written in perl which is ips.pl.. also you can use wine on some of the windows.exe patches and in most case it will work fine.. other patches can be ran using dosemu and freedos So here we have it no more need to turn orochi because you use linux Enjoy !!!!!
  12. Hello All i was wondering about how to modify mame/xmame to support 3/punches /3kicks input switches for cps2 games.. i have seen this before in a mame32k.. i do miss not being able to hit one button intead of all 3 i toyed around in src/input/ but couldn't find anything.. i've also posted this on the xmame board but haven't heard anything yet..
  13. absolutely james of course.. however i think i may drop the ball on this particular driver and it's caused enuff of your time check pm
  14. kof2003 uses a special bios But kof2003b never did. Just so I am clear on your problem can you tell me what is wrong again please. Does the game play ? <{POST_SNAPBACK}> game just loads and resets some plus text can be seen right before it automatically resets.. is completely unplayable
  15. rechecked same matching romset taking roms from kof2003b.. i always run in command line when testing a rom first ron@Morpheus:~$ unzip -lv /mnt/hda1/mame/roms/kof2003 Archive: /mnt/hda1/mame/roms/kof2003.zip Length Method Size Ratio Date Time CRC-32 Name -------- ------ ------- ----- ---- ---- ------ ---- 16777216 Defl:X 5151122 69% 02-09-04 15:39 328e80b1 271-c2d.bin 16777216 Defl:X 7487945 55% 02-09-04 15:39 c29acd28 271-c1d.bin 16777216 Defl:X 7253202 57% 02-09-04 15:39 020a11f1 271-c3d.bin 16777216 Defl:X 4621539 73% 02-09-04 15:39 991b5ed2 271-c4d.bin 16777216 Defl:X 16285 100% 02-09-04 15:40 a47ca14a 271-c5d.bin 16777216 Defl:X 16285 100% 02-09-04 15:40 a47ca14a 271-c6d.bin 4194304 Defl:N 1225603 71% 07-29-03 00:16 92ed6ee3 271-p1bl.bin 524288 Defl:N 231264 56% 01-27-04 13:07 0e86af8f 271-m1d.bin 16777216 Defl:N 13473436 20% 11-07-05 16:16 2964f36e 271-v1d.bin 131072 Defl:N 10551 92% 02-09-04 16:53 98d1896b 271-s1bl.bin 8388608 Defl:N 3447318 59% 12-27-04 01:28 374ea523 271-c7d.rom 8388608 Defl:N 2247946 73% 12-27-04 01:29 75211f4d 271-c8d.rom 4194304 Defl:N 1220144 71% 12-26-04 06:13 92ed6ee3 271-p1.bin 4194304 Defl:N 742345 82% 12-26-04 06:27 5d3d8bb3 271-p2.bin 131072 Defl:N 10620 92% 12-26-04 06:27 c47f8ac3 271-s1.rom 4194304 Defl:N 3458023 18% 12-26-04 07:04 d2b8aa5e 271-v1d.rom 4194304 Defl:N 3385347 19% 12-26-04 06:58 71956ee2 271-v2d.rom 4194304 Defl:N 3294275 22% 12-27-04 01:29 ddbbb199 271-v3d.rom 4194304 Defl:N 3335018 21% 12-27-04 01:29 01b90c4f 271-v4d.rom 8388608 Defl:N 3515679 58% 12-27-04 01:25 e42fc226 271-c1d.rom 8388608 Defl:N 2407110 71% 12-27-04 01:26 1b5e3b58 271-c2d.rom 8388608 Defl:N 4044216 52% 12-27-04 01:26 d334fdd9 271-c3d.rom 8388608 Defl:N 2833264 66% 12-27-04 01:27 0d457699 271-c4d.rom 8388608 Defl:N 3891700 54% 12-27-04 01:27 8a91aae4 271-c5d.rom 8388608 Defl:N 2480638 70% 12-27-04 01:28 9f8674b8 271-c6d.rom 8388608 Defl:N 1979454 76% 11-06-05 09:44 87294c01 271-p1up.bin 131072 Defl:N 15111 89% 11-06-05 09:37 e5708c0c 271-s1up.bin 131072 Defl:N 27165 79% 12-03-97 15:54 9036d879 neo-geo.rom 131072 Defl:N 2792 98% 03-06-98 16:20 5a86cff2 ng-lo.rom 131072 Defl:N 16066 88% 03-06-98 16:21 354029fc ng-sfix.rom 131072 Defl:N 11272 91% 10-28-98 22:58 97cf998b ng-sm1.rom -------- ------- --- ------- 223739904 81852735 63% 31 files i threw a diff bios in because i remember kof2003b having a special bios origionally
  16. yeah i'm baffled myself over this one.. i even tried switching bios files / using unibios 2.1.. i did not edit your driver or the crc's it looks for either..i do have them exactly... is it possible something went wrong in the patching but somehow my p1 and s1 roms are reporting correct crc's? oh also by chance is this a mame or mame32 driver? that would definately be the problem if its a mame32 driver.... still scratching my head... thanks for looking over my files though i hope it wasn't too time consuming
  17. i still have no clue why i'm still having issues crc's are completlely correct maybe some thing in.087? ..after >> static int prot_data; static READ16_HANDLER( fatfury2_protection_16_r ) { data16_t res = (prot_data >> 24) & 0xff; switch (offset) { case 0x55550/2: case 0xffff0/2: case 0x00000/2: case 0xff000/2: case 0x36000/2: case 0x36008/2: return res; case 0x36004/2: case 0x3600c/2: return ((res & 0xf0) >> 4) | ((res & 0x0f) << 4); default: logerror("unknown protection read at pc %06x, offset %08x\n",activecpu_get_pc(),offset<<1); return 0; } } static WRITE16_HANDLER( fatfury2_protection_16_w ) { switch (offset) { case 0x55552/2: /* data == 0x5555; read back from 55550, ffff0, 00000, ff000 */ prot_data = 0xff00ff00; break; case 0x56782/2: /* data == 0x1234; read back from 36000 *or* 36004 */ prot_data = 0xf05a3601; break; case 0x42812/2: /* data == 0x1824; read back from 36008 *or* 3600c */ prot_data = 0x81422418; break; case 0x55550/2: case 0xffff0/2: case 0xff000/2: case 0x36000/2: case 0x36004/2: case 0x36008/2: case 0x3600c/2: prot_data <<= 8; break; default: logerror("unknown protection write at pc %06x, offset %08x, data %02x\n",activecpu_get_pc(),offset,data); break; } } static READ16_HANDLER( popbounc_sfix_16_r ) { if (activecpu_get_pc()==0x6b10) return 0; return neogeo_ram16[0x4fbc/2]; } i have >> /* PCB init info */ static unsigned short CartRAM[0x1000]; unsigned char pvc_r8(unsigned int address) { return *(((unsigned char *)CartRAM)+((address^1)-0x2fe000)); } void pvc_w8(unsigned int address, unsigned char data) { *(((unsigned char *)CartRAM)+((address^1)-0x2fe000))=data; } // These perform some palette calculations // Unpack palette word to RGB dword, thanks to bms888 void pvc_prot1( void ) // on writes to e0/e1 { unsigned char b1, b2; b1 = pvc_r8(0x2fffe0); b2 = pvc_r8(0x2fffe1); pvc_w8(0x2fffe3,(((b2>>0)&0xf)<<1)|((b1>>4)&1)); pvc_w8(0x2fffe2,(((b2>>4)&0xf)<<1)|((b1>>5)&1)); pvc_w8(0x2fffe5,(((b1>>0)&0xf)<<1)|((b1>>6)&1)); pvc_w8(0x2fffe4, (b1>>7)); } void pvc_prot2( void ) // on writes to e8/e9/ea/eb { unsigned char b1, b2, b3, b4; b1 = pvc_r8(0x2fffe8); b2 = pvc_r8(0x2fffe9); b3 = pvc_r8(0x2fffea); b4 = pvc_r8(0x2fffeb); pvc_w8(0x2fffed,(b2>>1)|((b1>>1)<<4)); pvc_w8(0x2fffec,(b4>>1)|((b2&1)<<4)|((b1&1)<<5)|((b4&1)<<6)|((b3&1)<<7)); } void pvc_write_bankswitch( void ) { UINT32 bankaddress; bankaddress = ((CartRAM[0xff8]>>|(CartRAM[0xff9]<<)+0x100000; neogeo_set_cpu1_second_bank(bankaddress); } static WRITE16_HANDLER( pvc_prot_w ) { COMBINE_DATA( &CartRAM[ offset ] ); if (offset == 0xFF0)pvc_prot1(); else if(offset >= 0xFF4 && offset <= 0xFF5)pvc_prot2(); else if(offset >= 0xFF8 && offset <= 0xFF9)pvc_write_bankswitch(); } static READ16_HANDLER( pvc_prot_r ) { if (offset >= 0xFF8) { if(CartRAM[0xFF8] == 0xffff) { CartRAM[0xFF8] = 0xfea0; CartRAM[0xFF9] = 0x7fff; } if(CartRAM[0xFF8] == 0x0000) { CartRAM[0xFF8] = 0x00a0; } } return CartRAM[ offset ]; } /* kof2003 bootleg init info */ static READ16_HANDLER( kof2003b_prot_r ) { return CartRAM[0xff9]; } after kludges i have if (!strcmp(Machine->gamedrv->name,"kof2003b") || !strcmp(Machine->gamedrv->name,"kof2003a") || !strcmp(Machine->gamedrv->name,"kof2k3up") || !strcmp(Machine->gamedrv->name,"kf2k3ba")) { memory_install_read16_handler(0, ADDRESS_SPACE_PROGRAM, 0x2fe000, 0x2fffff, 0, 0, pvc_prot_r); memory_install_write16_handler(0, ADDRESS_SPACE_PROGRAM, 0x2fe000, 0x2fffff, 0, 0, pvc_prot_w); memory_install_read16_handler(0, ADDRESS_SPACE_PROGRAM, 0x058196, 0x058197, 0, 0, kof2003b_prot_r); } crcs are correct but game crashes and reboots
  18. nm i got it... still having problems with 2k3up though only crc issue is vith v2d i'll try patching it or maybe its something else?
  19. ack gosh darn damn... the machine/neogeo.c causes segfaults with the game.. now my kof2003b that was working segfaults also... i tried in klugdes and individu */lndividual games can go here.. */ could you be more specific?
  20. sorry to keep bugging you james hopefully i'll stop after this.. but i was wondering if you had a kof2003 ultra plus driver for the encypted set.. this one.. Length Method Size Ratio Date Time CRC-32 Name -------- ------ ------- ----- ---- ---- ------ ---- 8388608 Defl:N 1979454 76% 11-06-05 09:44 87294c01 271-p1up.bin 131072 Defl:N 15111 89% 11-06-05 09:37 e5708c0c 271-s1up.bin and i can't find a patch to get the decrypted set.. it was a total nightmare patching it with windows tools in a unix system..grrrr i did attempt to use other kof2003 driver types but oddly i'm getting a blue and yellow screen with no crash or restart or even any garbage... some weird form of protection ? who knows and off the record are the "SHA" 's simply md5sums?
  21. hi James i got them working and a few more.. here goes in /src/drivers/neogeo.c ROM_START( kof2k4esd ) ROM_REGION( 0x500000, REGION_CPU1, 0 ) ROM_LOAD16_WORD_SWAP( "2k4-p1.bin", 0x000000, 0x100000, CRC(5f482757)) ROM_LOAD16_WORD_SWAP( "2k-p2.bin", 0x100000, 0x400000, CRC(698679a7) ) NEO_SFIX_128K( "2k4s-s1.bin", CRC(348686dd)) NEO_BIOS_SOUND_128K( "2k4-m1.bin", CRC(5a47d9ad) SHA1(0197737934653acc6c97221660d789e9914f3578)) ROM_REGION( 0x1000000, REGION_SOUND1, ROMREGION_SOUNDONLY ) ROM_LOAD( "2k4-v1.bin", 0x000000, 0x400000, CRC(8991f6e9) SHA1(ce5afc0169c142d7f98111afbc60b3a9a2e17256)) ROM_LOAD( "2k4-v2.bin", 0x400000, 0x400000, CRC(511e4d2f) SHA1(28190ec86ac2169ab6fad80635ed13cfcf430c65)) ROM_LOAD( "2k4-v3.bin", 0x800000, 0x400000, CRC(1dd8b53a) SHA1(9aa84f145ba07f5f3c3b3fb682eb8a8ab1500b4c)) ROM_LOAD( "2k4-v4.bin", 0xc00000, 0x400000, CRC(63bb5462) SHA1(afc6a085e25bd006f26e16beda4244bc8bc19bb8)) NO_DELTAT_REGION ROM_REGION( 0x4000000, REGION_GFX3, 0 ) ROM_LOAD16_BYTE( "2k4-c1.bin", 0x0000000, 0x800000, CRC(7a050288) SHA1(55a20c5b01e11a859f096af3f8e09986025d288f)) ROM_LOAD16_BYTE( "2k4-c2.bin", 0x0000001, 0x800000, CRC(e924afcf) SHA1(651e974f7339d2cdcfa58c5398013197a0525b77)) ROM_LOAD16_BYTE( "2k4-c3.bin", 0x1000000, 0x800000, CRC(959fad0b) SHA1(63ab83ddc5f688dc8165a7ff8d262df3fcd942a2)) ROM_LOAD16_BYTE( "2k4-c4.bin", 0x1000001, 0x800000, CRC(efe6a468) SHA1(2a414285e48aa948b5b0d4a9333bab083b5fb853)) ROM_LOAD16_BYTE( "2k4-c5.bin", 0x2000000, 0x800000, CRC(74bba7c6) SHA1(e01adc7a4633bc0951b9b4f09abc07d728e9a2d9)) ROM_LOAD16_BYTE( "2k4-c6.bin", 0x2000001, 0x800000, CRC(e20d2216) SHA1(5d28eea7b581e780b78f391a8179f1678ee0d9a5)) ROM_LOAD16_BYTE( "2k4-c7.bin", 0x3000000, 0x800000, CRC(fa705b2b) SHA1(f314c66876589601806352484dd8e45bc41be692)) ROM_LOAD16_BYTE( "2k4-c8.bin", 0x3000001, 0x800000, CRC(2c912ff9) SHA1(b624a625ea3e221808b7ea43fb0b1a51d8c1853e)) ROM_END in the end of src/drivers/neogeo.c GAMEB( 2004, kof2k4esd, kof2002, neogeo, neogeo, neogeo, neogeo, ROT0, "Bootleg", "The King of Fighters 2004 Special Edition Decrypted" as far as kof 2001 remix pro (and a worthwhile hack) working with.................. ROM_START( kof2k1rp ) ROM_REGION( 0x500000, REGION_CPU1, 0 ) ROM_LOAD16_WORD_SWAP( "kof2k1rp_p1.rom", 0x000000, 0x100000, CRC(e9e42e55) ) ROM_LOAD16_WORD_SWAP( "kof2k1rp_p2.rom", 0x100000, 0x400000, CRC(91668d86) ) NEO_SFIX_128K( "kof2k1rp_s1.rom", CRC(492f5efe) ) NEO_BIOS_SOUND_128K( "kof2k1rp_m1.rom", CRC(56a9067f) ) ROM_REGION( 0x1000000, REGION_SOUND1, ROMREGION_SOUNDONLY ) ROM_LOAD( "kof2k1rp_v1.rom", 0x000000, 0x400000, CRC(83d49ecf) ) ROM_LOAD( "kof2k1rp_v2.rom", 0x400000, 0x400000, CRC(003f1843) ) ROM_LOAD( "kof2k1rp_v3.rom", 0x800000, 0x400000, CRC(2ae38dbe) ) ROM_LOAD( "kof2k1rp_v4.rom", 0xc00000, 0x400000, CRC(26ec4dd9) ) NO_DELTAT_REGION ROM_REGION( 0x4000000, REGION_GFX3, 0 ) ROM_LOAD16_BYTE( "kof2k1rp_c1.rom", 0x0000000, 0x800000, CRC(f298b87b) ) /* plane 0,1 */ ROM_LOAD16_BYTE( "kof2k1rp_c2.rom", 0x0000001, 0x800000, CRC(f9d05d99) ) /* Plane 2,3 */ ROM_LOAD16_BYTE( "kof2k1rp_c3.rom", 0x1000000, 0x800000, CRC(4c7ec427) ) /* Plane 0,1 */ ROM_LOAD16_BYTE( "kof2k1rp_c4.rom", 0x1000001, 0x800000, CRC(1d237aa6) ) /* Plane 2,3 */ ROM_LOAD16_BYTE( "kof2k1rp_c5.rom", 0x2000000, 0x800000, CRC(c2256db5) ) /* Plane 0,1 */ ROM_LOAD16_BYTE( "kof2k1rp_c6.rom", 0x2000001, 0x800000, CRC(8d6565a9) ) /* Plane 2,3 */ ROM_LOAD16_BYTE( "kof2krp_c7.rom", 0x3000000, 0x800000, CRC(ef682ed2) ) /* Plane 0,1 */ ROM_LOAD16_BYTE( "kof2k1rp_c8.rom", 0x3000001, 0x800000, CRC(954d0e16) ) /* Plane 2,3 */ ROM_END and in the end of src/driver/neogeo.c GAMEB( 2001, kof2k1rp, kof2001, neogeo, neogeo, neogeo, neogeo, ROT0, "Eolith /SNK ", "The King of Fighters 2001 Remix Pro" ) kof2k1rp is well worth grabbing might i mention extra moves and blue lifebars.. anyone thats enuff of an "snkmaniak" can find them on the 'net thanks again bro i've been a fan sice the westnet/kula days.... keep up the good work..and many thanks for your drivers and help!!!!!
  22. thanks james !! however i have a bad p2 i believe i know how bad a p1 can cause a disturbance in the force but can a p2 do it as well (garbled graphics) wasn't there a kof2002 > kof2k4se patch floating around? also do you have a matrimbl driver (kawaks dev version)? thanks again james
  23. Hello all i was wondering if anyone had a few drivers i want... i use linux so no winkawaks or fba option.. also i'm using an older xmame port..085 actually... i do have 0.100 sources but newer versions seem very testy as far as xmame well anyway here goes king of fighters 2001 remix pro Archive: /roms/kof2k1rp.zip Length Method Size Ratio Date Time CRC-32 Name -------- ------ ------- ----- ---- ---- ------ ---- 8388608 Defl:N 3865184 54% 01-19-02 17:47 4c7ec427 kof2k1rp_c3.rom 8388608 Defl:N 2749955 67% 01-19-02 17:05 1d237aa6 kof2k1rp_c4.rom 8388608 Defl:N 3638288 57% 01-19-02 17:06 c2256db5 kof2k1rp_c5.rom 8388608 Defl:N 2646416 69% 01-19-02 17:06 8d6565a9 kof2k1rp_c6.rom 8388608 Defl:N 3663766 56% 03-30-02 13:41 ef682ed2 kof2k1rp_c7.rom 8388608 Defl:N 2502410 70% 01-19-02 17:08 954d0e16 kof2k1rp_c8.rom 131072 Defl:N 29594 77% 02-08-04 10:36 56a9067f kof2k1rp_m1.rom 1048576 Defl:N 367388 65% 04-17-04 14:24 e9e42e55 kof2k1rp_p1.rom 4194304 Defl:N 1719134 59% 04-17-04 14:25 91668d86 kof2k1rp_p2.rom 131072 Defl:N 39624 70% 04-17-04 14:26 492f5efe kof2k1rp_s1.rom 4194304 Defl:N 3535609 16% 03-31-96 01:28 83d49ecf kof2k1rp_v1.rom 4194304 Defl:N 3560821 15% 03-31-96 01:39 003f1843 kof2k1rp_v2.rom 4194304 Defl:N 3350869 20% 03-31-96 03:17 2ae38dbe kof2k1rp_v3.rom 4194304 Defl:N 3155605 25% 03-31-96 19:47 26ec4dd9 kof2k1rp_v4.rom 8388608 Defl:N 3737752 55% 01-19-02 17:03 f298b87b kof2k1rp_c1.rom 8388608 Defl:N 2381880 72% 01-19-02 17:04 f9d05d99 kof2k1rp_c2.rom also an older kof2k4es (mines same as kof2k4se Archive: /roms/kof2k4es.zip Length Method Size Ratio Date Time CRC-32 Name -------- ------ ------- ----- ---- ---- ------ ---- 4194304 Defl:N 3495271 17% 11-23-04 17:09 63bb5462 2k4-v4.rom 8388608 Defl:N 3661131 56% 11-23-04 17:04 7a050288 2k4-c1.rom 8388608 Defl:N 2638966 69% 11-23-04 17:22 e924afcf 2k4-c2.rom 8388608 Defl:N 3996914 52% 12-11-02 19:56 959fad0b 2k4-c3.rom 8388608 Defl:N 3830638 54% 12-11-02 19:56 74bba7c6 2k4-c5.rom 8388608 Defl:N 3418271 59% 11-23-04 17:05 fa705b2b 2k4-c7.rom 8388608 Defl:N 2480524 70% 11-23-04 17:25 2c912ff9 2k4-c8.rom 131072 Defl:N 51935 60% 11-23-04 17:22 5a47d9ad 2k4-m1.rom 1048576 Defl:N 368791 65% 11-23-04 17:05 5f482757 2k4-p1.rom 131072 Defl:N 18050 86% 11-23-04 17:22 a3c9b2d8 2k4-s1.rom 4194304 Defl:N 3497325 17% 11-23-04 17:08 8991f6e9 2k4-v1.rom 4194304 Defl:N 3564763 15% 11-23-04 17:08 511e4d2f 2k4-v2.rom 4194304 Defl:N 3515174 16% 11-23-04 17:08 1dd8b53a 2k4-v3.rom 8388608 Defl:N 2517424 70% 12-11-02 19:57 e20d2216 2k4-c6.rom 8388608 Defl:N 2840175 66% 10-23-02 20:00 efe6a468 2k4-c4.rom 4194304 Defl:N 1669326 60% 11-23-04 17:32 698679a7 2k4-p2.rom 1048576 Defl:N 369886 65% 01-07-05 02:33 388c5cba 2k4s-p1.bin 131072 Defl:N 17651 87% 01-07-05 02:48 348686dd 2k4s-s1.bin i did find a few drivers online but i'm getting scrambled graphics and think that i didn't corvert them properly to the old driver format or maybe i need something in machine/neogeo.c like cthd and such thanks in advance!!!
×
×
  • Create New...