6K Fairchild confirmed working (thx to skaman)

This commit is contained in:
sanni 2023-02-06 09:13:41 +01:00
parent 4c52f35011
commit 16eb662c3b
2 changed files with 5 additions and 5 deletions

View File

@ -4,8 +4,8 @@
This project represents a community-driven effort to provide
an easy to build and easy to modify cartridge dumper.
Date: 17.01.2023
Version: 12.1
Date: 06.02.2023
Version: 12.2
SD lib: https://github.com/greiman/SdFat
LCD lib: https://github.com/olikraus/u8g2
@ -57,7 +57,7 @@
**********************************************************************************/
char ver[5] = "12.1";
char ver[5] = "12.2";
//******************************************
// !!! CHOOSE HARDWARE VERSION !!!

View File

@ -501,8 +501,8 @@ void read16K_FAIRCHILD() // Read 16K Bytes
unsigned long cartsize = FAIRCHILD[fairchildsize] * 0x400;
for (int y = 0; y < 0x20; y++) {
// Skip BIOS/Blocks Code for 4K Cart
// 3K/6K CARTS MAY NEED THE SKIP BIOS/BLOCKS ROUTINE USED FOR THE 4K CART
// TEST 3K/6K CARTS BY SETTING ROM SIZE TO 2K/4K AND COMPARE 16K DUMPS
// 3K CARTS MAY NEED THE SKIP BIOS/BLOCKS ROUTINE USED FOR THE 4K CART
// TEST 3K CARTS BY SETTING ROM SIZE TO 2K/4K AND COMPARE 16K DUMPS
if (cartsize == 0x1000) { // Pro Football 4K
setROMC_FAIRCHILD(0x8); // Clear PC0
setREAD_FAIRCHILD();