V2.7: Fix flashing 29F032 Snes repro

This commit is contained in:
sanni 2019-01-31 15:30:00 +01:00
parent 4d1d9648c9
commit 7f74f22ce7
2 changed files with 7 additions and 7 deletions

View File

@ -2,8 +2,8 @@
Cartridge Reader for Arduino Mega2560
Author: sanni
Date: 18-01-2019
Version: 2.6
Date: 31-01-2019
Version: 2.7
SD lib: https://github.com/greiman/SdFat
LCD lib: https://github.com/adafruit/Adafruit_SSD1306
@ -37,7 +37,7 @@
vogelfreiheit - N64 flashram fix
**********************************************************************************/
char ver[5] = "2.6";
char ver[5] = "2.7";
/******************************************
Define Starting Point

View File

@ -894,8 +894,8 @@ void busyCheck29F032(byte c) {
// Set data pins to input
dataIn8();
// Setting OE(PH1) CE(PH6)LOW
PORTH &= ~((1 << 1) | (1 << 6));
// Setting OE(PH1) OE_SNS(PH3) CE(PH6)LOW
PORTH &= ~((1 << 1) | (1 << 3) | (1 << 6));
// Setting WE(PH4) WE_SNES(PH5) HIGH
PORTH |= (1 << 4) | (1 << 5);
@ -905,8 +905,8 @@ void busyCheck29F032(byte c) {
// Set data pins to output
dataOut();
// Setting OE(PH1) HIGH
PORTH |= (1 << 1);
// Setting OE(PH1) OE_SNS(PH3) HIGH
PORTH |= (1 << 1) | (1 << 3);
}
/******************************************
29F1610 flashrom functions