├── .gitignore ├── Makefile ├── boot ├── boot.6102 └── entry.s ├── include ├── gfx.h ├── init.h ├── mem.h ├── platform.h ├── task_sched.h └── text.h ├── n64.ld ├── src ├── gfx │ ├── font.bin │ ├── gfx.cpp │ └── text.cpp ├── header │ └── header.s ├── main │ ├── cachefunc.s │ ├── cachetests.cpp │ ├── init.cpp │ ├── main.cpp │ └── task_sched.cpp └── math │ └── asmmath.s └── tools └── n64cksum.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/Makefile -------------------------------------------------------------------------------- /boot/boot.6102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/boot/boot.6102 -------------------------------------------------------------------------------- /boot/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/boot/entry.s -------------------------------------------------------------------------------- /include/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/include/gfx.h -------------------------------------------------------------------------------- /include/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/include/init.h -------------------------------------------------------------------------------- /include/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/include/mem.h -------------------------------------------------------------------------------- /include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/include/platform.h -------------------------------------------------------------------------------- /include/task_sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/include/task_sched.h -------------------------------------------------------------------------------- /include/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/include/text.h -------------------------------------------------------------------------------- /n64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/n64.ld -------------------------------------------------------------------------------- /src/gfx/font.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/src/gfx/font.bin -------------------------------------------------------------------------------- /src/gfx/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/src/gfx/gfx.cpp -------------------------------------------------------------------------------- /src/gfx/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/src/gfx/text.cpp -------------------------------------------------------------------------------- /src/header/header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/src/header/header.s -------------------------------------------------------------------------------- /src/main/cachefunc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/src/main/cachefunc.s -------------------------------------------------------------------------------- /src/main/cachetests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/src/main/cachetests.cpp -------------------------------------------------------------------------------- /src/main/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/src/main/init.cpp -------------------------------------------------------------------------------- /src/main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/src/main/main.cpp -------------------------------------------------------------------------------- /src/main/task_sched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/src/main/task_sched.cpp -------------------------------------------------------------------------------- /src/math/asmmath.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/src/math/asmmath.s -------------------------------------------------------------------------------- /tools/n64cksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Wiseguy/N64-Cache-Emulation-Tests/HEAD/tools/n64cksum.py --------------------------------------------------------------------------------