We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b455273 commit c17b119Copy full SHA for c17b119
src/main.cpp
@@ -413,8 +413,8 @@ void load_cart_rom_file(char *filename) {
413
FIL fil;
414
FRESULT fr;
415
416
- size_t bufsize = sizeof(SCREEN);
417
- BYTE *buffer = (BYTE *) SCREEN;
+ size_t bufsize = sizeof(ram);
+ BYTE *buffer = (BYTE *) ram;
418
auto ofs = FLASH_TARGET_OFFSET;
419
printf("Writing %s rom to flash %x\r\n", filename, ofs);
420
fr = f_open(&fil, filename, FA_READ);
@@ -615,7 +615,7 @@ int main() {
615
set_sys_clock_khz(288000, true);
616
617
/* Initialise USB serial connection for debugging. */
618
- stdio_init_all();
+ //stdio_init_all();
619
// time_init();
620
//sleep_ms(5000);
621
0 commit comments