├── .gitignore ├── LICENSE ├── Makefile ├── README ├── include └── Sha256.h └── src ├── Sha256.c └── bios-dump.c /.gitignore: -------------------------------------------------------------------------------- 1 | /bios-dump.* 2 | build/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/bios-dump/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/bios-dump/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/bios-dump/HEAD/README -------------------------------------------------------------------------------- /include/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/bios-dump/HEAD/include/Sha256.h -------------------------------------------------------------------------------- /src/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/bios-dump/HEAD/src/Sha256.c -------------------------------------------------------------------------------- /src/bios-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/bios-dump/HEAD/src/bios-dump.c --------------------------------------------------------------------------------