├── .gitignore ├── Makefile ├── Makefile.mlckey ├── README.md ├── ccd00.ld ├── ccd00.specs ├── elf_rules └── source ├── crt0.S ├── main.c ├── mbr.h ├── rednand_config.h ├── sal.h ├── sal_mbr.c ├── sal_mbr.h ├── sal_partition.c ├── sal_partition.h └── wfs.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.mlckey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/Makefile.mlckey -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/README.md -------------------------------------------------------------------------------- /ccd00.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/ccd00.ld -------------------------------------------------------------------------------- /ccd00.specs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/ccd00.specs -------------------------------------------------------------------------------- /elf_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/elf_rules -------------------------------------------------------------------------------- /source/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/source/crt0.S -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/source/main.c -------------------------------------------------------------------------------- /source/mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/source/mbr.h -------------------------------------------------------------------------------- /source/rednand_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/source/rednand_config.h -------------------------------------------------------------------------------- /source/sal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/source/sal.h -------------------------------------------------------------------------------- /source/sal_mbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/source/sal_mbr.c -------------------------------------------------------------------------------- /source/sal_mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/source/sal_mbr.h -------------------------------------------------------------------------------- /source/sal_partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/source/sal_partition.c -------------------------------------------------------------------------------- /source/sal_partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/source/sal_partition.h -------------------------------------------------------------------------------- /source/wfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StroopwafelCFW/wafel_sd_usb/HEAD/source/wfs.h --------------------------------------------------------------------------------