├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── config.yml ├── windows │ ├── install.bat │ ├── vs_community.exe │ └── vsconfig └── workflows │ └── build.yml ├── .gitignore ├── Content └── macos_system_report.png ├── Examples ├── Libdragon │ ├── 1. Hello World │ │ ├── Makefile │ │ ├── debug.c │ │ ├── debug.h │ │ └── main.c │ ├── 2. USB Read │ │ ├── Makefile │ │ └── main.c │ ├── 3. Command Interpreter │ │ ├── Makefile │ │ ├── assets │ │ │ └── texture.png │ │ ├── debug.c │ │ ├── debug.h │ │ ├── main.c │ │ ├── tex1.sprite │ │ ├── tex2.sprite │ │ └── tex3.sprite │ └── README.md ├── Libultra │ ├── 1. Hello World │ │ ├── GNUmakefile │ │ ├── asm │ │ │ ├── entry.s │ │ │ ├── macros.inc │ │ │ └── rom_header.s │ │ ├── debug.c │ │ ├── debug.h │ │ ├── main.c │ │ ├── makeclean.bat │ │ ├── makefile │ │ ├── makeme.bat │ │ ├── osconfig.h │ │ ├── spec │ │ ├── stacks.c │ │ ├── unflexa1.ld │ │ ├── usb.c │ │ └── usb.h │ ├── 2. Thread Faults │ │ ├── GNUmakefile │ │ ├── asm │ │ │ ├── entry.s │ │ │ ├── macros.inc │ │ │ └── rom_header.s │ │ ├── config.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── dump.bat │ │ ├── graphic.c │ │ ├── main.c │ │ ├── makeclean.bat │ │ ├── makefile │ │ ├── makeme.bat │ │ ├── spec │ │ ├── spr_arena.c │ │ ├── spr_arena.h │ │ ├── spr_chuck.c │ │ ├── spr_chuck.h │ │ ├── stage00.c │ │ ├── stages.h │ │ ├── unflexa2.ld │ │ ├── usb.c │ │ └── usb.h │ ├── 3. USB Read │ │ ├── GNUmakefile │ │ ├── asm │ │ │ ├── entry.s │ │ │ ├── macros.inc │ │ │ └── rom_header.s │ │ ├── main.c │ │ ├── makeclean.bat │ │ ├── makefile │ │ ├── makeme.bat │ │ ├── osconfig.h │ │ ├── spec │ │ ├── stacks.c │ │ ├── unflexa3.ld │ │ ├── usb.c │ │ └── usb.h │ ├── 4. Command Interpreter │ │ ├── GNUmakefile │ │ ├── asm │ │ │ ├── entry.s │ │ │ ├── macros.inc │ │ │ └── rom_header.s │ │ ├── config.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── graphic.c │ │ ├── helper.c │ │ ├── helper.h │ │ ├── main.c │ │ ├── makeclean.bat │ │ ├── makefile │ │ ├── makeme.bat │ │ ├── spec │ │ ├── stage00.c │ │ ├── stages.h │ │ ├── tex1.bin │ │ ├── tex2.bin │ │ ├── tex3.bin │ │ ├── texture.c │ │ ├── texture.h │ │ ├── unflexa4.ld │ │ ├── usb.c │ │ └── usb.h │ └── README.md └── README.md ├── LICENSE ├── README.md ├── UNFLoader ├── FlashcartLib_Dynamic.vcxproj ├── FlashcartLib_Dynamic.vcxproj.filters ├── FlashcartLib_Static.vcxproj ├── FlashcartLib_Static.vcxproj.filters ├── Include │ ├── WinTypes.h │ ├── curses.h │ ├── curspriv.h │ ├── ftd2xx.h │ ├── ftd2xx.lib │ ├── ftd2xx_x64.lib │ ├── lodepng.cpp │ ├── lodepng.h │ ├── panel.h │ ├── pdcurses.lib │ └── pdcurses_x64.lib ├── Makefile ├── PropertySheet.props ├── README.md ├── UNFLoader.sln ├── UNFLoader.vcxproj ├── UNFLoader.vcxproj.filters ├── debug.cpp ├── debug.h ├── device.cpp ├── device.h ├── device_64drive.cpp ├── device_64drive.h ├── device_everdrive.cpp ├── device_everdrive.h ├── device_gopher64.cpp ├── device_gopher64.h ├── device_sc64.cpp ├── device_sc64.h ├── device_usb.cpp ├── device_usb.h ├── gdbstub.cpp ├── gdbstub.h ├── helper.cpp ├── helper.h ├── installer_linux.sh ├── main.cpp ├── main.h ├── term.cpp ├── term.h └── term_internal.h ├── USB+Debug Library ├── README.md ├── debug.c ├── debug.h ├── usb.c └── usb.h └── azure-pipelines.yml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/windows/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/.github/windows/install.bat -------------------------------------------------------------------------------- /.github/windows/vs_community.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/.github/windows/vs_community.exe -------------------------------------------------------------------------------- /.github/windows/vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/.github/windows/vsconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/macos_system_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Content/macos_system_report.png -------------------------------------------------------------------------------- /Examples/Libdragon/1. Hello World/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/1. Hello World/Makefile -------------------------------------------------------------------------------- /Examples/Libdragon/1. Hello World/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/1. Hello World/debug.c -------------------------------------------------------------------------------- /Examples/Libdragon/1. Hello World/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/1. Hello World/debug.h -------------------------------------------------------------------------------- /Examples/Libdragon/1. Hello World/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/1. Hello World/main.c -------------------------------------------------------------------------------- /Examples/Libdragon/2. USB Read/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/2. USB Read/Makefile -------------------------------------------------------------------------------- /Examples/Libdragon/2. USB Read/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/2. USB Read/main.c -------------------------------------------------------------------------------- /Examples/Libdragon/3. Command Interpreter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/3. Command Interpreter/Makefile -------------------------------------------------------------------------------- /Examples/Libdragon/3. Command Interpreter/assets/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/3. Command Interpreter/assets/texture.png -------------------------------------------------------------------------------- /Examples/Libdragon/3. Command Interpreter/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/3. Command Interpreter/debug.c -------------------------------------------------------------------------------- /Examples/Libdragon/3. Command Interpreter/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/3. Command Interpreter/debug.h -------------------------------------------------------------------------------- /Examples/Libdragon/3. Command Interpreter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/3. Command Interpreter/main.c -------------------------------------------------------------------------------- /Examples/Libdragon/3. Command Interpreter/tex1.sprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/3. Command Interpreter/tex1.sprite -------------------------------------------------------------------------------- /Examples/Libdragon/3. Command Interpreter/tex2.sprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/3. Command Interpreter/tex2.sprite -------------------------------------------------------------------------------- /Examples/Libdragon/3. Command Interpreter/tex3.sprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/3. Command Interpreter/tex3.sprite -------------------------------------------------------------------------------- /Examples/Libdragon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libdragon/README.md -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/GNUmakefile -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/asm/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/asm/entry.s -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/asm/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/asm/macros.inc -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/asm/rom_header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/asm/rom_header.s -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/debug.c -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/debug.h -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/main.c -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/makeclean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/makeclean.bat -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/makefile -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/makeme.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/makeme.bat -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/osconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/osconfig.h -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/spec -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/stacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/stacks.c -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/unflexa1.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/unflexa1.ld -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/usb.c -------------------------------------------------------------------------------- /Examples/Libultra/1. Hello World/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/1. Hello World/usb.h -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/GNUmakefile -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/asm/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/asm/entry.s -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/asm/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/asm/macros.inc -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/asm/rom_header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/asm/rom_header.s -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/config.h -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/debug.c -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/debug.h -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/dump.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/dump.bat -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/graphic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/graphic.c -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/main.c -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/makeclean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/makeclean.bat -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/makefile -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/makeme.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/makeme.bat -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/spec -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/spr_arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/spr_arena.c -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/spr_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/spr_arena.h -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/spr_chuck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/spr_chuck.c -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/spr_chuck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/spr_chuck.h -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/stage00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/stage00.c -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/stages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/stages.h -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/unflexa2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/unflexa2.ld -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/usb.c -------------------------------------------------------------------------------- /Examples/Libultra/2. Thread Faults/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/2. Thread Faults/usb.h -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/GNUmakefile -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/asm/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/asm/entry.s -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/asm/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/asm/macros.inc -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/asm/rom_header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/asm/rom_header.s -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/main.c -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/makeclean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/makeclean.bat -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/makefile -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/makeme.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/makeme.bat -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/osconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/osconfig.h -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/spec -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/stacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/stacks.c -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/unflexa3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/unflexa3.ld -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/usb.c -------------------------------------------------------------------------------- /Examples/Libultra/3. USB Read/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/3. USB Read/usb.h -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/GNUmakefile -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/asm/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/asm/entry.s -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/asm/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/asm/macros.inc -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/asm/rom_header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/asm/rom_header.s -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/config.h -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/debug.c -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/debug.h -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/graphic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/graphic.c -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/helper.c -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/helper.h -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/main.c -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/makeclean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/makeclean.bat -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/makefile -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/makeme.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/makeme.bat -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/spec -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/stage00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/stage00.c -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/stages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/stages.h -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/tex1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/tex1.bin -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/tex2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/tex2.bin -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/tex3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/tex3.bin -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/texture.c -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/texture.h -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/unflexa4.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/unflexa4.ld -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/usb.c -------------------------------------------------------------------------------- /Examples/Libultra/4. Command Interpreter/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/4. Command Interpreter/usb.h -------------------------------------------------------------------------------- /Examples/Libultra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/Libultra/README.md -------------------------------------------------------------------------------- /Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/Examples/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/README.md -------------------------------------------------------------------------------- /UNFLoader/FlashcartLib_Dynamic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/FlashcartLib_Dynamic.vcxproj -------------------------------------------------------------------------------- /UNFLoader/FlashcartLib_Dynamic.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/FlashcartLib_Dynamic.vcxproj.filters -------------------------------------------------------------------------------- /UNFLoader/FlashcartLib_Static.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/FlashcartLib_Static.vcxproj -------------------------------------------------------------------------------- /UNFLoader/FlashcartLib_Static.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/FlashcartLib_Static.vcxproj.filters -------------------------------------------------------------------------------- /UNFLoader/Include/WinTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/Include/WinTypes.h -------------------------------------------------------------------------------- /UNFLoader/Include/curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/Include/curses.h -------------------------------------------------------------------------------- /UNFLoader/Include/curspriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/Include/curspriv.h -------------------------------------------------------------------------------- /UNFLoader/Include/ftd2xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/Include/ftd2xx.h -------------------------------------------------------------------------------- /UNFLoader/Include/ftd2xx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/Include/ftd2xx.lib -------------------------------------------------------------------------------- /UNFLoader/Include/ftd2xx_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/Include/ftd2xx_x64.lib -------------------------------------------------------------------------------- /UNFLoader/Include/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/Include/lodepng.cpp -------------------------------------------------------------------------------- /UNFLoader/Include/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/Include/lodepng.h -------------------------------------------------------------------------------- /UNFLoader/Include/panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/Include/panel.h -------------------------------------------------------------------------------- /UNFLoader/Include/pdcurses.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/Include/pdcurses.lib -------------------------------------------------------------------------------- /UNFLoader/Include/pdcurses_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/Include/pdcurses_x64.lib -------------------------------------------------------------------------------- /UNFLoader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/Makefile -------------------------------------------------------------------------------- /UNFLoader/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/PropertySheet.props -------------------------------------------------------------------------------- /UNFLoader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/README.md -------------------------------------------------------------------------------- /UNFLoader/UNFLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/UNFLoader.sln -------------------------------------------------------------------------------- /UNFLoader/UNFLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/UNFLoader.vcxproj -------------------------------------------------------------------------------- /UNFLoader/UNFLoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/UNFLoader.vcxproj.filters -------------------------------------------------------------------------------- /UNFLoader/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/debug.cpp -------------------------------------------------------------------------------- /UNFLoader/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/debug.h -------------------------------------------------------------------------------- /UNFLoader/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/device.cpp -------------------------------------------------------------------------------- /UNFLoader/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/device.h -------------------------------------------------------------------------------- /UNFLoader/device_64drive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/device_64drive.cpp -------------------------------------------------------------------------------- /UNFLoader/device_64drive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/device_64drive.h -------------------------------------------------------------------------------- /UNFLoader/device_everdrive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/device_everdrive.cpp -------------------------------------------------------------------------------- /UNFLoader/device_everdrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/device_everdrive.h -------------------------------------------------------------------------------- /UNFLoader/device_gopher64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/device_gopher64.cpp -------------------------------------------------------------------------------- /UNFLoader/device_gopher64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/device_gopher64.h -------------------------------------------------------------------------------- /UNFLoader/device_sc64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/device_sc64.cpp -------------------------------------------------------------------------------- /UNFLoader/device_sc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/device_sc64.h -------------------------------------------------------------------------------- /UNFLoader/device_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/device_usb.cpp -------------------------------------------------------------------------------- /UNFLoader/device_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/device_usb.h -------------------------------------------------------------------------------- /UNFLoader/gdbstub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/gdbstub.cpp -------------------------------------------------------------------------------- /UNFLoader/gdbstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/gdbstub.h -------------------------------------------------------------------------------- /UNFLoader/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/helper.cpp -------------------------------------------------------------------------------- /UNFLoader/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/helper.h -------------------------------------------------------------------------------- /UNFLoader/installer_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/installer_linux.sh -------------------------------------------------------------------------------- /UNFLoader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/main.cpp -------------------------------------------------------------------------------- /UNFLoader/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/main.h -------------------------------------------------------------------------------- /UNFLoader/term.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/term.cpp -------------------------------------------------------------------------------- /UNFLoader/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/term.h -------------------------------------------------------------------------------- /UNFLoader/term_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/UNFLoader/term_internal.h -------------------------------------------------------------------------------- /USB+Debug Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/USB+Debug Library/README.md -------------------------------------------------------------------------------- /USB+Debug Library/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/USB+Debug Library/debug.c -------------------------------------------------------------------------------- /USB+Debug Library/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/USB+Debug Library/debug.h -------------------------------------------------------------------------------- /USB+Debug Library/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/USB+Debug Library/usb.c -------------------------------------------------------------------------------- /USB+Debug Library/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/USB+Debug Library/usb.h -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-UNFLoader/HEAD/azure-pipelines.yml --------------------------------------------------------------------------------