├── .gitignore ├── LICENSE ├── README.md ├── iso.xml ├── main.c ├── makefile ├── rom ├── cop0.inc ├── makefile ├── romstrap.asm └── util │ └── exe2bin.c └── system.cnf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/liteload/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/liteload/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/liteload/HEAD/README.md -------------------------------------------------------------------------------- /iso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/liteload/HEAD/iso.xml -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/liteload/HEAD/main.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/liteload/HEAD/makefile -------------------------------------------------------------------------------- /rom/cop0.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/liteload/HEAD/rom/cop0.inc -------------------------------------------------------------------------------- /rom/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/liteload/HEAD/rom/makefile -------------------------------------------------------------------------------- /rom/romstrap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/liteload/HEAD/rom/romstrap.asm -------------------------------------------------------------------------------- /rom/util/exe2bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/liteload/HEAD/rom/util/exe2bin.c -------------------------------------------------------------------------------- /system.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lameguy64/liteload/HEAD/system.cnf --------------------------------------------------------------------------------