mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-27 23:14:14 +01:00
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:
commit
ed638bd42c
@ -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++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user