public override void addROMInfo(ROMInfo info, ROMFile file, WrappedInputStream stream) { Megadrive.parseMegadriveROM(info, stream, true); //There's also a "MAIN SEGAOS" at 0x3000 followed by what appears to be some kind of title. Does that mean anything? I don't know //Some more info: //https://forums.sonicretro.org/index.php?showtopic=30588 //https://segaretro.org/Sega_CD_programming_FAQ_(1998-12-06) //So 0x200 and beyond may have some kind of boot code which could then be checksummed to determine region, perhaps... }
public override void addROMInfo(ROMInfo info, ROMFile file) { Megadrive.parseMegadriveROM(info, file.stream); }