Jump to content

Robert

User Admin
  • Posts

    12,916
  • Joined

  • Last visited

  • Days Won

    347

Everything posted by Robert

  1. Upgraded to 0.102, and found that mamedev had changed a few things. All fixed and working. ms5plus: ok, the rom problem is settled, and I've progressed to getting the red screen, but that's it. I give up on this one.
  2. >> Get it HERE
  3. The keyboard on that game would have to be unique!
  4. I can only make use of what i've got. There's no point making a driver if it can't be tested.
  5. kf2k2pls: I found I had the decrypted roms, and it ran straight away. problem solved. ms5plus: That's a really old driver, and I don't have the v roms. I've tried mixing/matching, but no luck yet. What I've got is the set for kawaks 1.48/dev, so I'd like to get it working with that one if possible.
  6. MEKA is a multi-machine emulator for MS-DOS, MS-Windows and maybe GNU/Linux. The following machines are supported by MEKA: Sega Game 1000 (SG-1000) Sega Computer 3000 (SC-3000) Sega Super Control Station (SF-7000) Sega Mark III (+ FM Unit) Sega Master System (SMS) Sega Game Gear (GG) ColecoVision (COLECO) Othello Multivision (OMV) >> Get it HERE
  7. >> Get it HERE
  8. >> Get it HERE
  9. They call it an unlocker now. Go to Google, and search for unlocker+nebula+2.25
  10. >> Get it HERE
  11. >> Get it HERE
  12. I'm not impressed with myself after that. I already had all that code - except for the line that mattered. if (!strcmp(Machine->gamedrv->name,"cthd2003") || !strcmp(Machine->gamedrv->name,"ct2k3sp"))I only had cthd2003 there, don't know how I could have overlooked it. Thanks James, it works fine now. Metal Slug 5 Plus- does anyone have the driver? Lastly I've been looking at the kof96m_ep1.rom, it's either corrupt or encrypted?? Any answers? EDIT: never mind, I got the kof96m_ep1.rom encryption sorted out, and it works. Still need a working ms5plus driver though !!
  13. Yes they've changed it back. Perhaps it was an early April Fool's joke.
  14. It would make a mess of the tuxemu news service. Take a look at http://news.tuxemu.com and you'll see what I mean.
  15. 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.
  16. >> Get it HERE
  17. 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.
  18. 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.
  19. fMSX DS is a MSX emulator that runs on the Nintendo DS. >> Get it HERE Kind thanks to Emulation64 for the translation.
  20. 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.
  21. 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.
  22. 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!
  23. Which emulator? Still on Kawaks?
  24. Keep the 271-m1d
  25. >> Get it HERE
×
×
  • Create New...