├── .gitignore ├── Makefile ├── asm ├── boot.s ├── code.s └── makerom.s ├── checksum.md5 ├── extract_baserom.py ├── file_list.txt ├── ldscript.txt ├── notes ├── cloudmaxs-oot-ntsc10-bookmarks.txt └── oot-ntsc10-ram-notes.txt └── tools ├── .gitignore ├── Makefile ├── makeromfs.c ├── n64chksum.c ├── n64chksum.h ├── util.c ├── util.h ├── yaz0.c ├── yaz0.h └── yaz0tool.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/Makefile -------------------------------------------------------------------------------- /asm/boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/asm/boot.s -------------------------------------------------------------------------------- /asm/code.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/asm/code.s -------------------------------------------------------------------------------- /asm/makerom.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/asm/makerom.s -------------------------------------------------------------------------------- /checksum.md5: -------------------------------------------------------------------------------- 1 | 5bd1fe107bf8106b2ab6650abecd54d6 zelda_oot.z64 2 | -------------------------------------------------------------------------------- /extract_baserom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/extract_baserom.py -------------------------------------------------------------------------------- /file_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/file_list.txt -------------------------------------------------------------------------------- /ldscript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/ldscript.txt -------------------------------------------------------------------------------- /notes/cloudmaxs-oot-ntsc10-bookmarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/notes/cloudmaxs-oot-ntsc10-bookmarks.txt -------------------------------------------------------------------------------- /notes/oot-ntsc10-ram-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/notes/oot-ntsc10-ram-notes.txt -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | # Output files 2 | *.exe 3 | yaz0 4 | makeromfs 5 | -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/makeromfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/tools/makeromfs.c -------------------------------------------------------------------------------- /tools/n64chksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/tools/n64chksum.c -------------------------------------------------------------------------------- /tools/n64chksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/tools/n64chksum.h -------------------------------------------------------------------------------- /tools/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/tools/util.c -------------------------------------------------------------------------------- /tools/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/tools/util.h -------------------------------------------------------------------------------- /tools/yaz0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/tools/yaz0.c -------------------------------------------------------------------------------- /tools/yaz0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/tools/yaz0.h -------------------------------------------------------------------------------- /tools/yaz0tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camthesaxman/zelda_oot/HEAD/tools/yaz0tool.c --------------------------------------------------------------------------------