ROM-Reader for Super Nintendo / Super Famicom Game Cartridges

skaman:
Try adding the SPC7110 initialization code:

  // Dump SPC7110 High-type ROM

else if ((romType == HI) && ((romChips == 245) || (romChips == 249))) {
    println_Msg(F("Dumping SPC7110 HiRom"));
    display_Update();

dataOut();
    controlOut_SNES();
    writeBank_SNES( 0, 0x4831, 0 );
    writeBank_SNES( 0, 0x4832, 1 );
    writeBank_SNES( 0, 0x4833, 2 );
    writeBank_SNES( 0, 0x4834, 0 );
    dataIn();
    controlIn_SNES();

// 0xC00000-0xDFFFFF
    print_Msg(F(" Part 1"));
    display_Update();
    readHiRomBanks( 192, 224, &myFile );

Thanks for the quick reply. Tried entering this into the code. No dice. I got a copy identical to the ones I've been getting. Any other ideas?