cps2 roms?

Discussion in '0th Bit' started by sven666, Jun 28, 2007.

  1. d4s

    d4s Robust Member

    Joined:
    Jan 28, 2005
    Messages:
    287
    Likes Received:
    3

    stealth phoenix, that's a catchy name. ;)

    coincidentally, i've used mame plus myself for debugging my romsets.
    thanks for making a custom build available!
     
  2. idc

    idc Spirited Member

    Joined:
    Jan 5, 2005
    Messages:
    115
    Likes Received:
    7
    No worries! Hopefully the MAME Plus guys will pick up on that name too. ;)
     
  3. MottZilla

    MottZilla Champion of the Forum

    Joined:
    Feb 1, 2006
    Messages:
    5,066
    Likes Received:
    102
    Did anyone ever figure out what the decryption keys to Rockman Power Battle are? I seem to recall that being the last game to decrypt.
     
  4. smf

    smf mamedev

    Joined:
    Apr 14, 2005
    Messages:
    1,255
    Likes Received:
    88
    yeah, haze found code in the cps1 version that was the same as the cps2 version and nicola used that to figure out the key.
     
  5. idc

    idc Spirited Member

    Joined:
    Jan 5, 2005
    Messages:
    115
    Likes Received:
    7
    Info here, for those whom may be interested. http://haze.mameworld.info/2007/09/09/cps2-generation/

    I've found Haze's site in general to be a very good read.
     
  6. MottZilla

    MottZilla Champion of the Forum

    Joined:
    Feb 1, 2006
    Messages:
    5,066
    Likes Received:
    102
    Strange, FinalBurnAlpha still doesn't support it, and the encryption keys between FBA and Mame are entirely different for some reason.
     
  7. BlackDiamond

    BlackDiamond Member

    Joined:
    May 11, 2007
    Messages:
    8
    Likes Received:
    0
    The reason is FBA stores data as 16 bit little endian when MAME stores it like the original hardware (big endian)
     
  8. GaijinPunch

    GaijinPunch Lemon Party Organizer and Promoter

    Joined:
    Mar 13, 2004
    Messages:
    10,999
    Likes Received:
    75
    Uh... aren't there routines to flip this?
     
  9. Calpis

    Calpis Champion of the Forum

    Joined:
    Mar 13, 2004
    Messages:
    5,906
    Likes Received:
    21
    Code:
    unsigned char a, b;
    while (!feof(in))
    {
         a = fgetc(in);
         b = fgetc(in);
         a ^= b;
         b ^= a;
         a ^= b;
         fputc(a, out);
         fputc(b, out);
    }
    
     
sonicdude10
Draft saved Draft deleted
Insert every image as a...
  1.  0%

Share This Page