├── .gitattributes ├── .gitignore ├── .gitmodules ├── Boss.yaml ├── Boss_checksum.sha1 ├── README.md ├── Tower.yaml ├── Tower_checksum.sha1 ├── Transitions.yaml ├── Transitions_checksum.sha1 ├── boot_checksum.sha1 ├── files └── syms │ ├── symbol_addrs_original.Boss.txt │ ├── symbol_addrs_original.Tower.txt │ ├── symbol_addrs_original.Transitions.txt │ ├── symbol_addrs_original.boot.txt │ ├── symbol_addrs_original.game.txt │ ├── undefined_funcs.Boss.txt │ ├── undefined_funcs.Tower.txt │ ├── undefined_funcs.Transitions.txt │ ├── undefined_funcs.boot.txt │ ├── undefined_funcs.game.txt │ ├── undefined_funcs_auto.Boss.txt │ ├── undefined_funcs_auto.Tower.txt │ ├── undefined_funcs_auto.Transitions.txt │ ├── undefined_funcs_auto.boot.txt │ ├── undefined_funcs_auto.game.txt │ ├── undefined_syms.Boss.txt │ ├── undefined_syms.Tower.txt │ ├── undefined_syms.Transitions.txt │ ├── undefined_syms.boot.txt │ ├── undefined_syms.game.txt │ ├── undefined_syms_auto.Boss.txt │ ├── undefined_syms_auto.Tower.txt │ ├── undefined_syms_auto.Transitions.txt │ ├── undefined_syms_auto.boot.txt │ └── undefined_syms_auto.game.txt ├── game.yaml ├── game_checksum.sha1 ├── gauntlet.yaml ├── include ├── common.h ├── include_asm.h └── macro.inc ├── permuter_settings.toml ├── src └── boot │ ├── 1050.c │ └── 1490.c └── tools ├── Makefile ├── clearcomments.py ├── compress.py ├── kmc ├── ar ├── arZone.Identifier ├── as ├── asZone.Identifier ├── cc1 ├── cc1plus ├── cc1plusZone.Identifier ├── cc1Zone.Identifier ├── cpp ├── cppZone.Identifier ├── g++ ├── g++Zone.Identifier ├── gcc ├── gccZone.Identifier ├── objcopy ├── objcopyZone.Identifier ├── strip └── stripZone.Identifier ├── m2ctx.py └── n64crc.c /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/.gitmodules -------------------------------------------------------------------------------- /Boss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/Boss.yaml -------------------------------------------------------------------------------- /Boss_checksum.sha1: -------------------------------------------------------------------------------- 1 | 541e768be1a14d143b735e8129233fd9a878f639 files/Boss 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/README.md -------------------------------------------------------------------------------- /Tower.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/Tower.yaml -------------------------------------------------------------------------------- /Tower_checksum.sha1: -------------------------------------------------------------------------------- 1 | a3345a5b7037d1ef5376ec7e46b079f07b360100 files/Tower -------------------------------------------------------------------------------- /Transitions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/Transitions.yaml -------------------------------------------------------------------------------- /Transitions_checksum.sha1: -------------------------------------------------------------------------------- 1 | 12b216d55c9dbfe141e76263abdfcbee5e60b4aa files/Transitions 2 | -------------------------------------------------------------------------------- /boot_checksum.sha1: -------------------------------------------------------------------------------- 1 | 0489dcce749c6a5102681d288ed0616a4b94e99d baserom.z64 2 | -------------------------------------------------------------------------------- /files/syms/symbol_addrs_original.Boss.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/syms/symbol_addrs_original.Tower.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/syms/symbol_addrs_original.Transitions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/syms/symbol_addrs_original.boot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/files/syms/symbol_addrs_original.boot.txt -------------------------------------------------------------------------------- /files/syms/symbol_addrs_original.game.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/files/syms/symbol_addrs_original.game.txt -------------------------------------------------------------------------------- /files/syms/undefined_funcs.Boss.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/syms/undefined_funcs.Tower.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/syms/undefined_funcs.Transitions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/syms/undefined_funcs.boot.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/syms/undefined_funcs.game.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/syms/undefined_funcs_auto.Boss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/files/syms/undefined_funcs_auto.Boss.txt -------------------------------------------------------------------------------- /files/syms/undefined_funcs_auto.Tower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/files/syms/undefined_funcs_auto.Tower.txt -------------------------------------------------------------------------------- /files/syms/undefined_funcs_auto.Transitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/files/syms/undefined_funcs_auto.Transitions.txt -------------------------------------------------------------------------------- /files/syms/undefined_funcs_auto.boot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/files/syms/undefined_funcs_auto.boot.txt -------------------------------------------------------------------------------- /files/syms/undefined_funcs_auto.game.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/files/syms/undefined_funcs_auto.game.txt -------------------------------------------------------------------------------- /files/syms/undefined_syms.Boss.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/syms/undefined_syms.Tower.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/syms/undefined_syms.Transitions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/syms/undefined_syms.boot.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/syms/undefined_syms.game.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/syms/undefined_syms_auto.Boss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/files/syms/undefined_syms_auto.Boss.txt -------------------------------------------------------------------------------- /files/syms/undefined_syms_auto.Tower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/files/syms/undefined_syms_auto.Tower.txt -------------------------------------------------------------------------------- /files/syms/undefined_syms_auto.Transitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/files/syms/undefined_syms_auto.Transitions.txt -------------------------------------------------------------------------------- /files/syms/undefined_syms_auto.boot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/files/syms/undefined_syms_auto.boot.txt -------------------------------------------------------------------------------- /files/syms/undefined_syms_auto.game.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/files/syms/undefined_syms_auto.game.txt -------------------------------------------------------------------------------- /game.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/game.yaml -------------------------------------------------------------------------------- /game_checksum.sha1: -------------------------------------------------------------------------------- 1 | ebe1a69104b3c5ee83a3cb7737f271473f86fee7 files/game 2 | -------------------------------------------------------------------------------- /gauntlet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/gauntlet.yaml -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/include/common.h -------------------------------------------------------------------------------- /include/include_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/include/include_asm.h -------------------------------------------------------------------------------- /include/macro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/include/macro.inc -------------------------------------------------------------------------------- /permuter_settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/permuter_settings.toml -------------------------------------------------------------------------------- /src/boot/1050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/src/boot/1050.c -------------------------------------------------------------------------------- /src/boot/1490.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/src/boot/1490.c -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/clearcomments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/clearcomments.py -------------------------------------------------------------------------------- /tools/compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/compress.py -------------------------------------------------------------------------------- /tools/kmc/ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/ar -------------------------------------------------------------------------------- /tools/kmc/arZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/arZone.Identifier -------------------------------------------------------------------------------- /tools/kmc/as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/as -------------------------------------------------------------------------------- /tools/kmc/asZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/asZone.Identifier -------------------------------------------------------------------------------- /tools/kmc/cc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/cc1 -------------------------------------------------------------------------------- /tools/kmc/cc1plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/cc1plus -------------------------------------------------------------------------------- /tools/kmc/cc1plusZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/cc1plusZone.Identifier -------------------------------------------------------------------------------- /tools/kmc/cc1Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/cc1Zone.Identifier -------------------------------------------------------------------------------- /tools/kmc/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/cpp -------------------------------------------------------------------------------- /tools/kmc/cppZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/cppZone.Identifier -------------------------------------------------------------------------------- /tools/kmc/g++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/g++ -------------------------------------------------------------------------------- /tools/kmc/g++Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/g++Zone.Identifier -------------------------------------------------------------------------------- /tools/kmc/gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/gcc -------------------------------------------------------------------------------- /tools/kmc/gccZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/gccZone.Identifier -------------------------------------------------------------------------------- /tools/kmc/objcopy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/objcopy -------------------------------------------------------------------------------- /tools/kmc/objcopyZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/objcopyZone.Identifier -------------------------------------------------------------------------------- /tools/kmc/strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/strip -------------------------------------------------------------------------------- /tools/kmc/stripZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/kmc/stripZone.Identifier -------------------------------------------------------------------------------- /tools/m2ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/m2ctx.py -------------------------------------------------------------------------------- /tools/n64crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahsid/gauntlet-legends/HEAD/tools/n64crc.c --------------------------------------------------------------------------------