From 9732c4a9dcb2c34dd9cb99299802d41e5607a713 Mon Sep 17 00:00:00 2001 From: splash5 <2173030+splash5@users.noreply.github.com> Date: Sat, 26 Feb 2022 22:00:31 +0800 Subject: [PATCH 1/3] Change HW4 to use WS ADAPTER V2 --- Cart_Reader/WS.ino | 22 ++++++++++++++-------- Cart_Reader/options.h | 1 + 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/Cart_Reader/WS.ino b/Cart_Reader/WS.ino index 6337292..4bdef63 100644 --- a/Cart_Reader/WS.ino +++ b/Cart_Reader/WS.ino @@ -25,6 +25,12 @@ #include "options.h" #ifdef enable_WS +#ifdef ws_adapter_v2 +#define WS_CLK_BIT 5 // USE PE5 as CLK +#else +#define WS_CLK_BIT 3 // USE PE3 as CLK +#endif + /****************************************** Menu *****************************************/ @@ -61,8 +67,8 @@ void setup_WS() PORTH |= ((1 << 0) | (1 << 3) | (1 << 4) | (1 << 5) | (1 << 6)); // CLK outputs LOW - DDRE |= (1 << 3); - PORTE &= ~(1 << 3); + DDRE |= (1 << WS_CLK_BIT); + PORTE &= ~(1 << WS_CLK_BIT); // IO? as input with internal pull-up enabled DDRE &= ~(1 << 4); @@ -1214,10 +1220,10 @@ void generateEepromInstruction_WS(uint8_t *instruction, uint8_t opcode, uint16_t boolean unlockMMC2003_WS() { // initialize all control pin state - // RST(PH0) and CLK(PE3) to LOW + // RST(PH0) and CLK(PE3or5) to LOW // CART(PH3) MMC(PH4) WE(PH5) OE(PH6) to HIGH PORTH &= ~(1 << 0); - PORTE &= ~(1 << 3); + PORTE &= ~(1 << WS_CLK_BIT); PORTH |= ((1 << 3) | (1 << 4) | (1 << 5) | (1 << 6)); // switch RST(PH0) to HIGH @@ -1256,7 +1262,7 @@ boolean unlockMMC2003_WS() return false; } -// doing a L->H on CLK(PE3) pin +// doing a L->H on CLK pin void pulseCLK_WS(uint8_t count) { register uint8_t tic; @@ -1267,12 +1273,12 @@ void pulseCLK_WS(uint8_t count) "cpi %[count], 0\n\t" "breq L3_%=\n\t" "dec %[count]\n\t" - "cbi %[porte], 3\n\t" + "cbi %[porte], %[ws_clk_bit]\n\t" "ldi %[tic], 6\n\t" "L1_%=:\n\t" "dec %[tic]\n\t" "brne L1_%=\n\t" - "sbi %[porte], 3\n\t" + "sbi %[porte], %[ws_clk_bit]\n\t" "ldi %[tic], 5\n\t" "L2_%=:\n\t" "dec %[tic]\n\t" @@ -1280,7 +1286,7 @@ void pulseCLK_WS(uint8_t count) "rjmp L0_%=\n\t" "L3_%=:\n\t" : [tic] "=a" (tic) - : [count] "a" (count), [porte] "I" (_SFR_IO_ADDR(PORTE)) + : [count] "a" (count), [porte] "I" (_SFR_IO_ADDR(PORTE)), [ws_clk_bit] "I" (WS_CLK_BIT) ); } diff --git a/Cart_Reader/options.h b/Cart_Reader/options.h index decb646..2ec131d 100644 --- a/Cart_Reader/options.h +++ b/Cart_Reader/options.h @@ -24,6 +24,7 @@ #define enable_rotary #define clockgen_installed #define fastcrc +#define ws_adapter_v2 #endif #if (defined(HW2) || defined(HW3)) From 4a0cb109002d4620465f5e28efac6e8ded1b9106 Mon Sep 17 00:00:00 2001 From: splash5 <2173030+splash5@users.noreply.github.com> Date: Sat, 26 Feb 2022 22:09:03 +0800 Subject: [PATCH 2/3] Add more cart info Correct COLOR flag for BANC09 and BANC0E Add info for Mobile WonderGate v1.1 cart Add developer name "SCC" --- Cart_Reader/WS.ino | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Cart_Reader/WS.ino b/Cart_Reader/WS.ino index 4bdef63..cf7fe95 100644 --- a/Cart_Reader/WS.ino +++ b/Cart_Reader/WS.ino @@ -224,6 +224,8 @@ uint8_t getCartInfo_WS() // games missing 'COLOR' flag case 0x26db: // SQRC01 case 0xbfdf: // SUMC07 + case 0x50ca: // BANC09 + case 0x9238: // BANC0E { sdBuffer[7] |= 0x01; break; @@ -303,6 +305,12 @@ uint8_t getCartInfo_WS() } } } + else if (sdBuffer[6] == 0x2a && sdBuffer[8] == 0x01 && sdBuffer[9] == 0x01) + { + // Mobile WonderGate v1.1, checksum is filled with 0x0000 + wsGameChecksum = 0x1da0; + } + break; } } @@ -435,6 +443,7 @@ void getDeveloperName(uint8_t id, char *buf, size_t length) case 0x26: devName = PSTR("KDK"); break; case 0x27: devName = PSTR("SHL"); break; case 0x28: devName = PSTR("SQR"); break; + case 0x2a: devName = PSTR("SCC"); break; case 0x2b: devName = PSTR("TMC"); break; case 0x2d: devName = PSTR("NMC"); break; case 0x2e: devName = PSTR("SES"); break; From 92bca32a48c15d0ace2a52780af2c0e5b2be4b05 Mon Sep 17 00:00:00 2001 From: splash5 <2173030+splash5@users.noreply.github.com> Date: Sat, 26 Feb 2022 22:14:03 +0800 Subject: [PATCH 3/3] Showing progress bar when reading ROM --- Cart_Reader/WS.ino | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Cart_Reader/WS.ino b/Cart_Reader/WS.ino index cf7fe95..c4716de 100644 --- a/Cart_Reader/WS.ino +++ b/Cart_Reader/WS.ino @@ -494,6 +494,9 @@ void readROM_WS(char *outPathBuf, size_t bufferSize) // get correct starting rom bank uint16_t bank = (256 - (cartSize >> 16)); + uint32_t progress = 0; + + draw_progressbar(0, cartSize); // start reading rom for (; bank <= 0xff; bank++) @@ -517,7 +520,10 @@ void readROM_WS(char *outPathBuf, size_t bufferSize) * ((uint16_t*)(sdBuffer + w)) = readWord_WS(0x20000 + addr + w); myFile.write(sdBuffer, 512); + progress += 512; } + + draw_progressbar(progress, cartSize); } // turn off LEDs (only for BANC33)