├── .editorconfig ├── LICENSE ├── Makefile ├── README.md ├── patch ├── aplib │ ├── mm-u_z64enc_aplib.txt │ ├── oot-debug_z64enc_aplib.txt │ └── oot-ntsc-10_z64enc_aplib.txt ├── lzo │ ├── mm-u_z64enc_lzo.txt │ ├── oot-debug_z64enc_lzo.txt │ └── oot-ntsc-10_z64enc_lzo.txt ├── ucl │ ├── mm-u_z64enc_ucl.txt │ ├── oot-debug_z64enc_ucl.txt │ └── oot-ntsc-10_z64enc_ucl.txt └── yaz │ ├── mm-u_z64enc_yaz.txt │ ├── oot-debug_z64enc_yaz.txt │ └── oot-ntsc-10_z64enc_yaz.txt ├── src ├── aplib.c ├── extern.h ├── ld │ ├── README.md │ ├── mm-u.ld │ ├── n64.ld │ ├── oot-debug.ld │ └── oot-ntsc-10.ld ├── lzo.c ├── ucl.c ├── util │ └── put.c └── yaz.c └── wii-vc.gif /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/.editorconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/README.md -------------------------------------------------------------------------------- /patch/aplib/mm-u_z64enc_aplib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/patch/aplib/mm-u_z64enc_aplib.txt -------------------------------------------------------------------------------- /patch/aplib/oot-debug_z64enc_aplib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/patch/aplib/oot-debug_z64enc_aplib.txt -------------------------------------------------------------------------------- /patch/aplib/oot-ntsc-10_z64enc_aplib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/patch/aplib/oot-ntsc-10_z64enc_aplib.txt -------------------------------------------------------------------------------- /patch/lzo/mm-u_z64enc_lzo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/patch/lzo/mm-u_z64enc_lzo.txt -------------------------------------------------------------------------------- /patch/lzo/oot-debug_z64enc_lzo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/patch/lzo/oot-debug_z64enc_lzo.txt -------------------------------------------------------------------------------- /patch/lzo/oot-ntsc-10_z64enc_lzo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/patch/lzo/oot-ntsc-10_z64enc_lzo.txt -------------------------------------------------------------------------------- /patch/ucl/mm-u_z64enc_ucl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/patch/ucl/mm-u_z64enc_ucl.txt -------------------------------------------------------------------------------- /patch/ucl/oot-debug_z64enc_ucl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/patch/ucl/oot-debug_z64enc_ucl.txt -------------------------------------------------------------------------------- /patch/ucl/oot-ntsc-10_z64enc_ucl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/patch/ucl/oot-ntsc-10_z64enc_ucl.txt -------------------------------------------------------------------------------- /patch/yaz/mm-u_z64enc_yaz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/patch/yaz/mm-u_z64enc_yaz.txt -------------------------------------------------------------------------------- /patch/yaz/oot-debug_z64enc_yaz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/patch/yaz/oot-debug_z64enc_yaz.txt -------------------------------------------------------------------------------- /patch/yaz/oot-ntsc-10_z64enc_yaz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/patch/yaz/oot-ntsc-10_z64enc_yaz.txt -------------------------------------------------------------------------------- /src/aplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/src/aplib.c -------------------------------------------------------------------------------- /src/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/src/extern.h -------------------------------------------------------------------------------- /src/ld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/src/ld/README.md -------------------------------------------------------------------------------- /src/ld/mm-u.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/src/ld/mm-u.ld -------------------------------------------------------------------------------- /src/ld/n64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/src/ld/n64.ld -------------------------------------------------------------------------------- /src/ld/oot-debug.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/src/ld/oot-debug.ld -------------------------------------------------------------------------------- /src/ld/oot-ntsc-10.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/src/ld/oot-ntsc-10.ld -------------------------------------------------------------------------------- /src/lzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/src/lzo.c -------------------------------------------------------------------------------- /src/ucl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/src/ucl.c -------------------------------------------------------------------------------- /src/util/put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/src/util/put.c -------------------------------------------------------------------------------- /src/yaz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/src/yaz.c -------------------------------------------------------------------------------- /wii-vc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z64me/z64enc/HEAD/wii-vc.gif --------------------------------------------------------------------------------