gitextract_bjoi89rj/ ├── .gitignore ├── CMakeLists.txt ├── README.md ├── ext/ │ ├── FatFs_SPI/ │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── ff15/ │ │ │ ├── LICENSE.txt │ │ │ ├── documents/ │ │ │ │ ├── css_e.css │ │ │ │ └── res/ │ │ │ │ ├── app1.c │ │ │ │ ├── app2.c │ │ │ │ ├── app3.c │ │ │ │ ├── app4.c │ │ │ │ ├── app5.c │ │ │ │ └── app6.c │ │ │ └── source/ │ │ │ ├── 00history.txt │ │ │ ├── 00readme.txt │ │ │ ├── diskio.c │ │ │ ├── diskio.h │ │ │ ├── ff.c │ │ │ ├── ff.h │ │ │ ├── ffconf.h │ │ │ ├── ffsystem.c │ │ │ └── ffunicode.c │ │ ├── include/ │ │ │ ├── f_util.h │ │ │ ├── ff_stdio.h │ │ │ ├── my_debug.h │ │ │ ├── rtc.h │ │ │ └── util.h │ │ ├── sd_driver/ │ │ │ ├── crc.c │ │ │ ├── crc.h │ │ │ ├── demo_logging.c │ │ │ ├── hw_config.h │ │ │ ├── sd_card.c │ │ │ ├── sd_card.h │ │ │ ├── sd_spi.c │ │ │ ├── sd_spi.h │ │ │ ├── spi.c │ │ │ └── spi.h │ │ └── src/ │ │ ├── f_util.c │ │ ├── ff_stdio.c │ │ ├── glue.c │ │ ├── my_debug.c │ │ └── rtc.c │ ├── i2s/ │ │ ├── audio_i2s.pio │ │ ├── i2s.c │ │ └── i2s.h │ └── minigb_apu/ │ ├── LICENSE │ ├── minigb_apu.c │ └── minigb_apu.h ├── inc/ │ ├── gbcolors.h │ ├── hedley.h │ ├── mk_ili9225.h │ ├── peanut_gb.h │ └── sdcard.h ├── pico_sdk_import.cmake └── src/ ├── main.c └── mk_ili9225.c