mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-23 21:19:16 +01:00
Add files via uplpad
This commit is contained in:
parent
b3ac026495
commit
d8d9716aa3
@ -4,7 +4,7 @@
|
||||
This project represents a community-driven effort to provide
|
||||
an easy to build and easy to modify cartridge dumper.
|
||||
|
||||
Date: 21.06.2022
|
||||
Date: 23.06.2022
|
||||
Version: 8.5 BETA
|
||||
|
||||
SD lib: https://github.com/greiman/SdFat
|
||||
|
@ -498,9 +498,6 @@ void setup_GBA() {
|
||||
setROM_GBA();
|
||||
|
||||
// Get cart info
|
||||
display_Clear();
|
||||
println_Msg(F("Searching database..."));
|
||||
display_Update();
|
||||
getCartInfo_GBA();
|
||||
display_Clear();
|
||||
|
||||
@ -767,6 +764,7 @@ void getCartInfo_GBA() {
|
||||
}
|
||||
|
||||
if (logoChecksum != 0x4B1B) {
|
||||
display_Clear();
|
||||
print_Error(F("CARTRIDGE ERROR"), false);
|
||||
strcpy(romName, "ERROR");
|
||||
println_Msg(F(""));
|
||||
@ -792,6 +790,10 @@ void getCartInfo_GBA() {
|
||||
cartID[2] = char(sdBuffer[0xAE]);
|
||||
cartID[3] = char(sdBuffer[0xAF]);
|
||||
|
||||
display_Clear();
|
||||
println_Msg(F("Searching database..."));
|
||||
display_Update();
|
||||
|
||||
if (myFile.open("gba.txt", O_READ)) {
|
||||
// Loop through file
|
||||
while (myFile.available()) {
|
||||
|
Loading…
Reference in New Issue
Block a user