├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── src └── bootrom.asm └── tools └── encoder.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.bin 3 | .vscode -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloncm/MagenBoot/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloncm/MagenBoot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloncm/MagenBoot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloncm/MagenBoot/HEAD/README.md -------------------------------------------------------------------------------- /src/bootrom.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloncm/MagenBoot/HEAD/src/bootrom.asm -------------------------------------------------------------------------------- /tools/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloncm/MagenBoot/HEAD/tools/encoder.py --------------------------------------------------------------------------------