Change 2022 to 2023 in about screen

This commit is contained in:
sanni 2023-01-16 12:35:48 +01:00
parent d6a4be2348
commit c8bfc64009
9 changed files with 66 additions and 69 deletions

View File

@ -571,4 +571,7 @@ void setCart_ARC() {
arccsvFile.close(); arccsvFile.close();
} }
#endif #endif
//******************************************
// End of File
//******************************************

View File

@ -976,4 +976,7 @@ void setCart_ATARI() {
checkSize_ATARI(); checkSize_ATARI();
} }
#endif #endif
//******************************************
// End of File
//******************************************

View File

@ -1512,7 +1512,7 @@ void aboutScreen() {
display_Clear(); display_Clear();
println_Msg(F("Cartridge Reader")); println_Msg(F("Cartridge Reader"));
println_Msg(F("github.com/sanni")); println_Msg(F("github.com/sanni"));
print_Msg(F("2022 Version ")); print_Msg(F("2023 Version "));
println_Msg(ver); println_Msg(ver);
println_Msg(F("")); println_Msg(F(""));
println_Msg(F("")); println_Msg(F(""));
@ -2012,7 +2012,7 @@ void setup() {
Serial.begin(9600); Serial.begin(9600);
Serial.println(""); Serial.println("");
Serial.println(F("Cartridge Reader")); Serial.println(F("Cartridge Reader"));
Serial.println(F("2022 github.com/sanni")); Serial.println(F("2023 github.com/sanni"));
// LED Error // LED Error
setColor_RGB(0, 0, 255); setColor_RGB(0, 0, 255);
#endif #endif
@ -3528,4 +3528,4 @@ void loop() {
//****************************************** //******************************************
// End of File // End of File
//****************************************** //******************************************

View File

@ -899,4 +899,7 @@ void setCart_FAIRCHILD() {
fairchildcsvFile.close(); fairchildcsvFile.close();
} }
#endif #endif
//******************************************
// End of File
//******************************************

View File

@ -714,19 +714,19 @@ void getCartInfo_MD() {
if (cartSize == 0x400000) { if (cartSize == 0x400000) {
switch (chksum) { switch (chksum) {
// Super Street Fighter 2 // Super Street Fighter 2
case 0xCE25: // Super Street Fighter 2 (J) 40Mbit case 0xCE25: // Super Street Fighter 2 (J) 40Mbit
case 0xE41D: // Super Street Fighter 2 (E) 40Mbit case 0xE41D: // Super Street Fighter 2 (E) 40Mbit
case 0xE017: // Super Street Fighter 2 (U) 40Mbit case 0xE017: // Super Street Fighter 2 (U) 40Mbit
cartSize = 0x500000; cartSize = 0x500000;
break; break;
// Demons of Asteborg // Demons of Asteborg
case 0x0000: // Demons of Asteborg v1.0 (W) 120Mbit case 0x0000: // Demons of Asteborg v1.0 (W) 120Mbit
cartSize = 0xEAF2F4; cartSize = 0xEAF2F4;
break; break;
case 0xBCBF: // Demons of Asteborg v1.1 (W) 120Mbit case 0xBCBF: // Demons of Asteborg v1.1 (W) 120Mbit
case 0x6E1E: // Demons of Asteborg v1.11 (W) 120Mbit case 0x6E1E: // Demons of Asteborg v1.11 (W) 120Mbit
cartSize = 0xEA0000; cartSize = 0xEA0000;
break; break;
} }
@ -1220,56 +1220,47 @@ void readROM_MD() {
writeSSF2Map(0x50987F, 9); // 0xA130FF writeSSF2Map(0x50987F, 9); // 0xA130FF
offsetSSF2Bank = 1; offsetSSF2Bank = 1;
} }
// Demons of Asteborg Additional Banks // Demons of Asteborg Additional Banks
else if (currBuffer == 0x280000) { else if (currBuffer == 0x280000) {
writeSSF2Map(0x50987E, 10); // 0xA130FD writeSSF2Map(0x50987E, 10); // 0xA130FD
writeSSF2Map(0x50987F, 11); // 0xA130FF writeSSF2Map(0x50987F, 11); // 0xA130FF
offsetSSF2Bank = 2; offsetSSF2Bank = 2;
} } else if (currBuffer == 0x300000) {
else if (currBuffer == 0x300000) { writeSSF2Map(0x50987E, 12); // 0xA130FD
writeSSF2Map(0x50987E, 12); // 0xA130FD writeSSF2Map(0x50987F, 13); // 0xA130FF
writeSSF2Map(0x50987F, 13); // 0xA130FF
offsetSSF2Bank = 3; offsetSSF2Bank = 3;
} } else if (currBuffer == 0x380000) {
else if (currBuffer == 0x380000) { writeSSF2Map(0x50987E, 14); // 0xA130FD
writeSSF2Map(0x50987E, 14); // 0xA130FD writeSSF2Map(0x50987F, 15); // 0xA130FF
writeSSF2Map(0x50987F, 15); // 0xA130FF
offsetSSF2Bank = 4; offsetSSF2Bank = 4;
} } else if (currBuffer == 0x400000) {
else if (currBuffer == 0x400000) { writeSSF2Map(0x50987E, 16); // 0xA130FD
writeSSF2Map(0x50987E, 16); // 0xA130FD writeSSF2Map(0x50987F, 17); // 0xA130FF
writeSSF2Map(0x50987F, 17); // 0xA130FF
offsetSSF2Bank = 5; offsetSSF2Bank = 5;
} } else if (currBuffer == 0x480000) {
else if (currBuffer == 0x480000) { writeSSF2Map(0x50987E, 18); // 0xA130FD
writeSSF2Map(0x50987E, 18); // 0xA130FD writeSSF2Map(0x50987F, 19); // 0xA130FF
writeSSF2Map(0x50987F, 19); // 0xA130FF
offsetSSF2Bank = 6; offsetSSF2Bank = 6;
} } else if (currBuffer == 0x500000) {
else if (currBuffer == 0x500000) { writeSSF2Map(0x50987E, 20); // 0xA130FD
writeSSF2Map(0x50987E, 20); // 0xA130FD writeSSF2Map(0x50987F, 21); // 0xA130FF
writeSSF2Map(0x50987F, 21); // 0xA130FF
offsetSSF2Bank = 7; offsetSSF2Bank = 7;
} } else if (currBuffer == 0x580000) {
else if (currBuffer == 0x580000) { writeSSF2Map(0x50987E, 22); // 0xA130FD
writeSSF2Map(0x50987E, 22); // 0xA130FD writeSSF2Map(0x50987F, 23); // 0xA130FF
writeSSF2Map(0x50987F, 23); // 0xA130FF
offsetSSF2Bank = 8; offsetSSF2Bank = 8;
} } else if (currBuffer == 0x600000) {
else if (currBuffer == 0x600000) { writeSSF2Map(0x50987E, 24); // 0xA130FD
writeSSF2Map(0x50987E, 24); // 0xA130FD writeSSF2Map(0x50987F, 25); // 0xA130FF
writeSSF2Map(0x50987F, 25); // 0xA130FF
offsetSSF2Bank = 9; offsetSSF2Bank = 9;
} } else if (currBuffer == 0x680000) {
else if (currBuffer == 0x680000) { writeSSF2Map(0x50987E, 26); // 0xA130FD
writeSSF2Map(0x50987E, 26); // 0xA130FD writeSSF2Map(0x50987F, 27); // 0xA130FF
writeSSF2Map(0x50987F, 27); // 0xA130FF
offsetSSF2Bank = 10; offsetSSF2Bank = 10;
} } else if (currBuffer == 0x700000) {
else if (currBuffer == 0x700000) { writeSSF2Map(0x50987E, 28); // 0xA130FD
writeSSF2Map(0x50987E, 28); // 0xA130FD writeSSF2Map(0x50987F, 29); // 0xA130FF
writeSSF2Map(0x50987F, 29); // 0xA130FF
offsetSSF2Bank = 11; offsetSSF2Bank = 11;
} }

View File

@ -5400,4 +5400,4 @@ void writeFLASH() {
#endif #endif
//****************************************** //******************************************
// End of File // End of File
//****************************************** //******************************************

View File

@ -669,4 +669,7 @@ void setCart_ODY2() {
ody2csvFile.close(); ody2csvFile.close();
} }
#endif #endif
//******************************************
// End of File
//******************************************

View File

@ -342,7 +342,7 @@ uint32_t detect_rom_size_PCE(void) {
detect_32++; detect_32++;
} }
} }
//128KB detection //128KB detection
if (current_byte == detect_128) { if (current_byte == detect_128) {
if (read_byte_PCE(current_byte + 128UL * 1024UL) == read_byte) { if (read_byte_PCE(current_byte + 128UL * 1024UL) == read_byte) {
@ -380,27 +380,21 @@ uint32_t detect_rom_size_PCE(void) {
//ROM size detection by result //ROM size detection by result
if (detect_32 == DETECTION_SIZE) { if (detect_32 == DETECTION_SIZE) {
rom_size = 32; rom_size = 32;
} } else if (detect_128 == DETECTION_SIZE) {
else if (detect_128 == DETECTION_SIZE) {
rom_size = 128; rom_size = 128;
} } else if (detect_256 == DETECTION_SIZE) {
else if (detect_256 == DETECTION_SIZE) {
if (detect_512 == DETECTION_SIZE) { if (detect_512 == DETECTION_SIZE) {
rom_size = 256; rom_size = 256;
} } else {
else {
//rom_size = 1024; //rom_size = 1024;
//Another confirmation for 384KB because 384KB hucard has data in 0x0--0x40000 and 0x80000--0xA0000(0x40000 is mirror of 0x00000) //Another confirmation for 384KB because 384KB hucard has data in 0x0--0x40000 and 0x80000--0xA0000(0x40000 is mirror of 0x00000)
rom_size = 384; rom_size = 384;
} }
} } else if (detect_512 == DETECTION_SIZE) {
else if (detect_512 == DETECTION_SIZE) {
rom_size = 512; rom_size = 512;
} } else if (detect_768 == DETECTION_SIZE) {
else if (detect_768 == DETECTION_SIZE) {
rom_size = 768; rom_size = 768;
} } else {
else {
rom_size = 1024; rom_size = 1024;
} }
@ -411,7 +405,7 @@ uint32_t detect_rom_size_PCE(void) {
rom_size = 2560; rom_size = 2560;
} }
//Populous (Japan) //Populous (Japan)
if (read_byte_PCE(0x1F26) == 'P' && read_byte_PCE(0x1F27) == 'O' && read_byte_PCE(0x1F28) == 'P' && read_byte_PCE(0x1F29) == 'U' && read_byte_PCE(0x1F2A) == 'L' && read_byte_PCE(0x1F2B) == 'O' && read_byte_PCE(0x1F2C) == 'U' && read_byte_PCE(0x1F2D) == 'S') { if (read_byte_PCE(0x1F26) == 'P' && read_byte_PCE(0x1F27) == 'O' && read_byte_PCE(0x1F28) == 'P' && read_byte_PCE(0x1F29) == 'U' && read_byte_PCE(0x1F2A) == 'L' && read_byte_PCE(0x1F2B) == 'O' && read_byte_PCE(0x1F2C) == 'U' && read_byte_PCE(0x1F2D) == 'S') {
rom_size = 512; rom_size = 512;
} }
} }
@ -881,4 +875,4 @@ void pceMenu() {
//****************************************** //******************************************
// End of File // End of File
//****************************************** //******************************************

View File

@ -569,4 +569,4 @@ unsigned long verifySRAM_VB() {
#endif #endif
//****************************************** //******************************************
// End of File // End of File
//****************************************** //******************************************