Jump to content

Robert

User Admin
  • Posts

    12,935
  • Joined

  • Last visited

  • Days Won

    350

Everything posted by Robert

  1. Added the remaining homebrews (frogfest, npong10, poknight, columnsn, beast) and they all ran. Frogfest and Beast don't appear to do anything useful; Poknight and Npong10 worked but are boring; and Columnsn was the best of the lot, once I worked out the rules. Its only problem is when it's game over you can't see your score. Are you using these roms? "265-p1sr.bin", 0x100000, CRC(ebedae17)? "265-s1sr.bin", 0x020000, CRC(fecbb589)? If so, this code should work for you: DRIVER_INIT( kof2k2sr ) { int i; UINT8 *rom = memory_region( REGION_GFX1 ); int rom_size = memory_region_length( REGION_GFX1 ); for( i = 0; i < rom_size; i++ ) { rom[ i ] = BITSWAP8( rom[ i ], 7, 6, 0, 4, 3, 2, 1, 5 ); } init_neogeo(); } I should have said, the p1 rom was encrypted. I used "265-p1super", CRC (ab683690). I changed over to what you suggested, then realised almost all the roms were wrong. After fixing that, and using your driver_init, it worked like a charm. That game requires some patches if I remember correctly, try using the ones from regular cthd2003 Still struggling with this, I'm sure it's something wrong in the "text", perhaps I've got the wrong roms again. Now, something that might be handy in the future, I've created a crude "generic" sx_decrypter routine: //-------------------------------------------common sx decrypter static void sx_decrypt( int value ) { int sx_size = memory_region_length( REGION_GFX1 ); UINT8 *rom = memory_region( REGION_GFX1 ); int i; if (value == 1) { UINT8 *buf = malloc( sx_size ); memcpy( buf, rom, sx_size ); for( i = 0; i < sx_size; i += 0x10 ) { memcpy( &rom[ i ], &buf[ i + 0x08 ], 0x08 ); memcpy( &rom[ i + 0x08 ], &buf[ i ], 0x08 ); } free( buf ); } if (value == 2) { for( i = 0; i < sx_size; i++ ) { rom[ i ] = BITSWAP8( rom[ i ], 7, 6, 0, 4, 3, 2, 1, 5 ); } } }Call it either by: sx_decrypt(1) [used by samsh5bl, svcplus, kof2003b and kog], or sx_decrypt(2) [used by svcsplus, kof2k2mp, kof2k2sr and kof10thu]. I hope to improve on it later.
  2. >> Get it HERE
  3. The kawaks download page, http://cps2shock.retrogames.com/download.html, contains a link to Kawaks 1.55 - unfortunately the link is broken. We will post more information if and when it becomes available. EDIT: ~~ CANCELLED ~~, looks like it may have had problems.
  4. I didn't see that, but I know which forum Birdcat is on.. The writer of FCEUXD, along with others, have discovered that the Sony protection code, written by First4Internet, has violated several licences by including other people's work as their own. Sony have hidden this fact (or they didn't know). More (rather technical) stuff is HERE.
  5. fMSX DS is a MSX emulator that runs on the Nintendo DS. >> Get it HERE Kind thanks to Emulation64 for the translation.
  6. You have a bit of a mixture of roms there... The v and c roms are from kof2k4ex, and are therefore decrypted. I've no idea if they are suitable to your purpose. The p and s roms are unknown to me, I've no idea if they are correct or not. The m rom is correct. Unfortunately I don't have the s rom so I can't do testing for you. Perhaps someone else can help.
  7. Can a supermod split this topic from post 56 onward, to a new thread? Now to answer your question on cheats, I found this in a file called kof2003b.dat, I never use cheats and I have no idea what needs to be done... nevertheless here's what's inside it.
  8. Progress report: Found lotr (Jonas Indiana & the Lost Temple of Ra), added, working (its a buggy beta). Found a completely decrypted Pochi & Nyaa, working. After renaming the roms, it also works in NRX. After some searching and shuffling, got kof2003b working. Found the missing roms for kof10thu, it works. Used tiger1020x's kof2k1rp driver, works well. Got kof2k4ex and kof2k4mp working. Decided it was too hard to fix kof10th, either the code needs lots of patches or the memory needs banking. This is beyond my capabilities. kf2k2pls, runs but the flashing PLUS is corrupted. Help! kf2k2sp (Super, not sure of the driver name), has encryption and I'm stumped. Help! ct2k3sp runs, but the screen is obscured by lots of green and yellow things. The gfx are perfect but mostly are covered over by these things. Help again! Please!
  9. Which emulator? Still on Kawaks?
  10. Keep the 271-m1d
  11. >> Get it HERE
  12. Open the zip file with Winzip. Look in the CRC column. If the CRC column isn't there, click on Options, Configuration and make sure the CRC box is ticked.
  13. Flubba has released a new emulator that allows you to play Black Tiger on the GBA. It uses MAME roms. >> More information and Download HERE
  14. 35 ?? OMG !! Have a happy one James and may your birthday wishes come true.
  15. I hate to see a man suffer. Here ya go. It all goes in source\cps1.c Good luck.
  16. Some recently additions: >> Get it HERE
  17. EmuZWin emulates the Sinclair ZX-Spectrum >> Get it HERE
  18. Added various other releases and MESS.
  19. >> Get it HERE.
  20. More pictures at Haze's Mame WIP.
  21. What?? Does that mean something? This thread's been out of action for 15 months and should of been left that way.
  22. Home What do you think? (Credit to the Gens32 site for the heads-up).
  23. AgeMAME is a version of MAME that plays gambling games. >> Get it HERE
  24. Well, newer than me. Welcome Alluminitti !!
  25. The only one I ever had was the 2mb version. MAME loads it, then overwrites the 2nd half with the p2 rom. I picked up the 1mb version yesterday, I expect it's just the first 1mb of the 2mb version.
×
×
  • Create New...