Merge pull request #28 from vogelfreiheit/patch-1

Add support to N64.ino for some cartridges with alternative FlashRAM ICs
This commit is contained in:
sanni 2018-10-14 10:24:11 +02:00 committed by GitHub
commit ed638bd42c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2047,6 +2047,14 @@ void getFramType() {
println_Msg(F("Type: MN63F81MPN")); println_Msg(F("Type: MN63F81MPN"));
display_Update(); display_Update();
} }
// 29L1100KC-15B0 compat MX29L1101
else if ((sdBuffer[7] == 0x8e ) || (sdBuffer[7] == 0x84 )) {
flashramType = 1;
MN63F81MPN = false;
println_Msg(F("Type: 29L1100KC-15B0"));
println_Msg(F("(compat. MX29L1101)"));
display_Update();
}
// Type unknown // Type unknown
else { else {
for (byte c = 0; c < 8; c++) { for (byte c = 0; c < 8; c++) {