Update N64.ino

This commit is contained in:
sanni 2021-08-04 13:15:38 +02:00
parent 2a3963cb64
commit 2ff59bffb9
2 changed files with 5 additions and 5 deletions

View File

@ -476,6 +476,9 @@ void adIn_N64() {
DDRF = 0x00;
//A8-A15
DDRK = 0x00;
//Enable internal pull-up resistors
//PORTF = 0xFF;
//PORTK = 0xFF;
}
// Set Cartridge address
@ -2922,10 +2925,8 @@ redumpsamefolder:
// end time
unsigned long timeElapsed = (millis() - startTime) / 1000; // seconds
#endif
#else
// dumping rom fast
#ifdef fastcrc
byte buffer[1024] = { 0 };
// get current time

View File

@ -38,8 +38,7 @@
#define clockgen_installed
// Define CRC method for dumping N64 ROMs, slow seems to be more compatible with some SD cards
#define fastcrc //crc will be calculated during dumping from memory
//#define slowcrc // crc will be calculated after dumping from SD card
//#define slowcrc // crc will be calculated after dumping from SD card instead of during dumping from memory
// saves a n64log.txt file with rom info in /N64/ROM
#define savesummarytotxt