├── .gitattributes ├── .github ├── Catherine.gif ├── Chorizo.png ├── mario.png └── windows │ ├── install.bat │ ├── vs_community.exe │ └── vsconfig ├── .gitignore ├── .gitmodules ├── LICENSE ├── Plugin ├── io_export_s64_charexport.py └── io_import_s64_charimport.py ├── README.md ├── Sample Library ├── README.md ├── sausage64.c └── sausage64.h ├── Sample Model ├── Armor.png ├── BackTex.png ├── Boot.png ├── BootTex.png ├── Catherine 2.7.blend ├── Catherine.blend ├── CatherineExported.S64 ├── CatherineMaterials.txt ├── ChestTex.png ├── FaceTex.png ├── Faces │ ├── FaceAngryTex.png │ ├── FaceBlink1Tex.png │ ├── FaceBlink2Tex.png │ ├── FaceCuddleClosedTex.png │ ├── FaceCuddleTex.png │ ├── FaceEvil.png │ ├── FaceFlusteredTex.png │ ├── FaceGaspTex.png │ ├── FaceGrinTex.png │ ├── FaceNeutralBlink1Tex.png │ ├── FaceNeutralBlink2Tex.png │ ├── FaceNeutralTex.png │ ├── FacePainTex.png │ ├── FaceSmugTex.png │ ├── FaceStarsTex.png │ ├── FaceTexAnnoyed.png │ └── FaceTiredTex.png ├── Gambeson.png ├── Hair.png ├── KnifeSheatheTex.png ├── Pants.png ├── PantsTex.png ├── Scabbard.png ├── Skin.png ├── Sword.png ├── hilt.png └── palette.png ├── Sample Parser ├── Makefile ├── README.md ├── animation.c ├── animation.h ├── datastructs.c ├── datastructs.h ├── dlist.c ├── dlist.h ├── gbi.c ├── gbi.h ├── main.c ├── main.h ├── makeclean.bat ├── makeme.bat ├── material.c ├── material.h ├── mesh.c ├── mesh.h ├── opengl.c ├── opengl.h ├── optimizer.c ├── optimizer.h ├── output.c ├── output.h ├── parser.c ├── parser.h └── sample │ ├── CatherineExported.S64 │ └── CatherineMaterials.txt ├── Sample Previewer ├── Chorizo.fbp ├── Chorizo.rc ├── Chorizo.sln ├── Chorizo.vcxproj ├── Chorizo.vcxproj.filters ├── Makefile ├── README.md ├── Resources │ ├── MISSING.h │ ├── MISSING.png │ ├── bin2c.exe │ ├── generate.bat │ ├── icon_play.h │ ├── icon_play.png │ ├── icon_program.h │ ├── icon_program.ico │ └── icon_program.png ├── app.cpp ├── app.h ├── main.cpp ├── main.h ├── modelcanvas.cpp ├── modelcanvas.h ├── resource.h ├── sausage.cpp ├── sausage.h ├── sausage_animation.cpp ├── sausage_animation.h ├── sausage_material.cpp ├── sausage_material.h ├── sausage_mesh.cpp └── sausage_mesh.h ├── Sample ROM ├── libdragon │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── assets │ │ ├── BackTex.png │ │ ├── BootTex.png │ │ ├── ChestTex.png │ │ ├── FaceBlink1Tex.png │ │ ├── FaceBlink2Tex.png │ │ ├── FaceTex.png │ │ ├── KnifeSheatheTex.png │ │ ├── PantsTex.png │ │ ├── catherineMdl.bin │ │ └── opengl.h │ ├── catherineMdl.h │ ├── main.c │ ├── sausage64.c │ └── sausage64.h └── libultra │ ├── GNUmakefile │ ├── README.md │ ├── asm │ ├── assets.s │ ├── entry.s │ ├── macros.inc │ └── rom_header.s │ ├── axisMdl.h │ ├── config.h │ ├── debug.c │ ├── debug.h │ ├── graphic.c │ ├── helper.c │ ├── helper.h │ ├── main.c │ ├── makeclean.bat │ ├── makefile │ ├── makeme.bat │ ├── models │ ├── binary │ │ ├── catherineMdl.bin │ │ └── catherineMdl.h │ ├── static │ │ └── catherineMdl.h │ └── textures │ │ └── catherineTex.h │ ├── sausage.ld │ ├── sausage64.c │ ├── sausage64.h │ ├── spec │ ├── stage00.c │ ├── stages.h │ ├── usb.c │ └── usb.h └── azure-pipelines.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/Catherine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/.github/Catherine.gif -------------------------------------------------------------------------------- /.github/Chorizo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/.github/Chorizo.png -------------------------------------------------------------------------------- /.github/mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/.github/mario.png -------------------------------------------------------------------------------- /.github/windows/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/.github/windows/install.bat -------------------------------------------------------------------------------- /.github/windows/vs_community.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/.github/windows/vs_community.exe -------------------------------------------------------------------------------- /.github/windows/vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/.github/windows/vsconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugin/io_export_s64_charexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Plugin/io_export_s64_charexport.py -------------------------------------------------------------------------------- /Plugin/io_import_s64_charimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Plugin/io_import_s64_charimport.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/README.md -------------------------------------------------------------------------------- /Sample Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Library/README.md -------------------------------------------------------------------------------- /Sample Library/sausage64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Library/sausage64.c -------------------------------------------------------------------------------- /Sample Library/sausage64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Library/sausage64.h -------------------------------------------------------------------------------- /Sample Model/Armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Armor.png -------------------------------------------------------------------------------- /Sample Model/BackTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/BackTex.png -------------------------------------------------------------------------------- /Sample Model/Boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Boot.png -------------------------------------------------------------------------------- /Sample Model/BootTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/BootTex.png -------------------------------------------------------------------------------- /Sample Model/Catherine 2.7.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Catherine 2.7.blend -------------------------------------------------------------------------------- /Sample Model/Catherine.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Catherine.blend -------------------------------------------------------------------------------- /Sample Model/CatherineExported.S64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/CatherineExported.S64 -------------------------------------------------------------------------------- /Sample Model/CatherineMaterials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/CatherineMaterials.txt -------------------------------------------------------------------------------- /Sample Model/ChestTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/ChestTex.png -------------------------------------------------------------------------------- /Sample Model/FaceTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/FaceTex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceAngryTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceAngryTex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceBlink1Tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceBlink1Tex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceBlink2Tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceBlink2Tex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceCuddleClosedTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceCuddleClosedTex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceCuddleTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceCuddleTex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceEvil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceEvil.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceFlusteredTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceFlusteredTex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceGaspTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceGaspTex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceGrinTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceGrinTex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceNeutralBlink1Tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceNeutralBlink1Tex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceNeutralBlink2Tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceNeutralBlink2Tex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceNeutralTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceNeutralTex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FacePainTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FacePainTex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceSmugTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceSmugTex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceStarsTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceStarsTex.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceTexAnnoyed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceTexAnnoyed.png -------------------------------------------------------------------------------- /Sample Model/Faces/FaceTiredTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Faces/FaceTiredTex.png -------------------------------------------------------------------------------- /Sample Model/Gambeson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Gambeson.png -------------------------------------------------------------------------------- /Sample Model/Hair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Hair.png -------------------------------------------------------------------------------- /Sample Model/KnifeSheatheTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/KnifeSheatheTex.png -------------------------------------------------------------------------------- /Sample Model/Pants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Pants.png -------------------------------------------------------------------------------- /Sample Model/PantsTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/PantsTex.png -------------------------------------------------------------------------------- /Sample Model/Scabbard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Scabbard.png -------------------------------------------------------------------------------- /Sample Model/Skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Skin.png -------------------------------------------------------------------------------- /Sample Model/Sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/Sword.png -------------------------------------------------------------------------------- /Sample Model/hilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/hilt.png -------------------------------------------------------------------------------- /Sample Model/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Model/palette.png -------------------------------------------------------------------------------- /Sample Parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/Makefile -------------------------------------------------------------------------------- /Sample Parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/README.md -------------------------------------------------------------------------------- /Sample Parser/animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/animation.c -------------------------------------------------------------------------------- /Sample Parser/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/animation.h -------------------------------------------------------------------------------- /Sample Parser/datastructs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/datastructs.c -------------------------------------------------------------------------------- /Sample Parser/datastructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/datastructs.h -------------------------------------------------------------------------------- /Sample Parser/dlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/dlist.c -------------------------------------------------------------------------------- /Sample Parser/dlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/dlist.h -------------------------------------------------------------------------------- /Sample Parser/gbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/gbi.c -------------------------------------------------------------------------------- /Sample Parser/gbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/gbi.h -------------------------------------------------------------------------------- /Sample Parser/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/main.c -------------------------------------------------------------------------------- /Sample Parser/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/main.h -------------------------------------------------------------------------------- /Sample Parser/makeclean.bat: -------------------------------------------------------------------------------- 1 | del *.exe -------------------------------------------------------------------------------- /Sample Parser/makeme.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/makeme.bat -------------------------------------------------------------------------------- /Sample Parser/material.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/material.c -------------------------------------------------------------------------------- /Sample Parser/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/material.h -------------------------------------------------------------------------------- /Sample Parser/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/mesh.c -------------------------------------------------------------------------------- /Sample Parser/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/mesh.h -------------------------------------------------------------------------------- /Sample Parser/opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/opengl.c -------------------------------------------------------------------------------- /Sample Parser/opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/opengl.h -------------------------------------------------------------------------------- /Sample Parser/optimizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/optimizer.c -------------------------------------------------------------------------------- /Sample Parser/optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/optimizer.h -------------------------------------------------------------------------------- /Sample Parser/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/output.c -------------------------------------------------------------------------------- /Sample Parser/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/output.h -------------------------------------------------------------------------------- /Sample Parser/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/parser.c -------------------------------------------------------------------------------- /Sample Parser/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/parser.h -------------------------------------------------------------------------------- /Sample Parser/sample/CatherineExported.S64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/sample/CatherineExported.S64 -------------------------------------------------------------------------------- /Sample Parser/sample/CatherineMaterials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Parser/sample/CatherineMaterials.txt -------------------------------------------------------------------------------- /Sample Previewer/Chorizo.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Chorizo.fbp -------------------------------------------------------------------------------- /Sample Previewer/Chorizo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Chorizo.rc -------------------------------------------------------------------------------- /Sample Previewer/Chorizo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Chorizo.sln -------------------------------------------------------------------------------- /Sample Previewer/Chorizo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Chorizo.vcxproj -------------------------------------------------------------------------------- /Sample Previewer/Chorizo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Chorizo.vcxproj.filters -------------------------------------------------------------------------------- /Sample Previewer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Makefile -------------------------------------------------------------------------------- /Sample Previewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/README.md -------------------------------------------------------------------------------- /Sample Previewer/Resources/MISSING.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Resources/MISSING.h -------------------------------------------------------------------------------- /Sample Previewer/Resources/MISSING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Resources/MISSING.png -------------------------------------------------------------------------------- /Sample Previewer/Resources/bin2c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Resources/bin2c.exe -------------------------------------------------------------------------------- /Sample Previewer/Resources/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Resources/generate.bat -------------------------------------------------------------------------------- /Sample Previewer/Resources/icon_play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Resources/icon_play.h -------------------------------------------------------------------------------- /Sample Previewer/Resources/icon_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Resources/icon_play.png -------------------------------------------------------------------------------- /Sample Previewer/Resources/icon_program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Resources/icon_program.h -------------------------------------------------------------------------------- /Sample Previewer/Resources/icon_program.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Resources/icon_program.ico -------------------------------------------------------------------------------- /Sample Previewer/Resources/icon_program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/Resources/icon_program.png -------------------------------------------------------------------------------- /Sample Previewer/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/app.cpp -------------------------------------------------------------------------------- /Sample Previewer/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/app.h -------------------------------------------------------------------------------- /Sample Previewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/main.cpp -------------------------------------------------------------------------------- /Sample Previewer/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/main.h -------------------------------------------------------------------------------- /Sample Previewer/modelcanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/modelcanvas.cpp -------------------------------------------------------------------------------- /Sample Previewer/modelcanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/modelcanvas.h -------------------------------------------------------------------------------- /Sample Previewer/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/resource.h -------------------------------------------------------------------------------- /Sample Previewer/sausage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/sausage.cpp -------------------------------------------------------------------------------- /Sample Previewer/sausage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/sausage.h -------------------------------------------------------------------------------- /Sample Previewer/sausage_animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/sausage_animation.cpp -------------------------------------------------------------------------------- /Sample Previewer/sausage_animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/sausage_animation.h -------------------------------------------------------------------------------- /Sample Previewer/sausage_material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/sausage_material.cpp -------------------------------------------------------------------------------- /Sample Previewer/sausage_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/sausage_material.h -------------------------------------------------------------------------------- /Sample Previewer/sausage_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/sausage_mesh.cpp -------------------------------------------------------------------------------- /Sample Previewer/sausage_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample Previewer/sausage_mesh.h -------------------------------------------------------------------------------- /Sample ROM/libdragon/.gitignore: -------------------------------------------------------------------------------- 1 | filesystem/ 2 | build/ 3 | *.z64 -------------------------------------------------------------------------------- /Sample ROM/libdragon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/Makefile -------------------------------------------------------------------------------- /Sample ROM/libdragon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/README.md -------------------------------------------------------------------------------- /Sample ROM/libdragon/assets/BackTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/assets/BackTex.png -------------------------------------------------------------------------------- /Sample ROM/libdragon/assets/BootTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/assets/BootTex.png -------------------------------------------------------------------------------- /Sample ROM/libdragon/assets/ChestTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/assets/ChestTex.png -------------------------------------------------------------------------------- /Sample ROM/libdragon/assets/FaceBlink1Tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/assets/FaceBlink1Tex.png -------------------------------------------------------------------------------- /Sample ROM/libdragon/assets/FaceBlink2Tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/assets/FaceBlink2Tex.png -------------------------------------------------------------------------------- /Sample ROM/libdragon/assets/FaceTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/assets/FaceTex.png -------------------------------------------------------------------------------- /Sample ROM/libdragon/assets/KnifeSheatheTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/assets/KnifeSheatheTex.png -------------------------------------------------------------------------------- /Sample ROM/libdragon/assets/PantsTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/assets/PantsTex.png -------------------------------------------------------------------------------- /Sample ROM/libdragon/assets/catherineMdl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/assets/catherineMdl.bin -------------------------------------------------------------------------------- /Sample ROM/libdragon/assets/opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/assets/opengl.h -------------------------------------------------------------------------------- /Sample ROM/libdragon/catherineMdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/catherineMdl.h -------------------------------------------------------------------------------- /Sample ROM/libdragon/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/main.c -------------------------------------------------------------------------------- /Sample ROM/libdragon/sausage64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/sausage64.c -------------------------------------------------------------------------------- /Sample ROM/libdragon/sausage64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libdragon/sausage64.h -------------------------------------------------------------------------------- /Sample ROM/libultra/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/GNUmakefile -------------------------------------------------------------------------------- /Sample ROM/libultra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/README.md -------------------------------------------------------------------------------- /Sample ROM/libultra/asm/assets.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/asm/assets.s -------------------------------------------------------------------------------- /Sample ROM/libultra/asm/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/asm/entry.s -------------------------------------------------------------------------------- /Sample ROM/libultra/asm/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/asm/macros.inc -------------------------------------------------------------------------------- /Sample ROM/libultra/asm/rom_header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/asm/rom_header.s -------------------------------------------------------------------------------- /Sample ROM/libultra/axisMdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/axisMdl.h -------------------------------------------------------------------------------- /Sample ROM/libultra/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/config.h -------------------------------------------------------------------------------- /Sample ROM/libultra/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/debug.c -------------------------------------------------------------------------------- /Sample ROM/libultra/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/debug.h -------------------------------------------------------------------------------- /Sample ROM/libultra/graphic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/graphic.c -------------------------------------------------------------------------------- /Sample ROM/libultra/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/helper.c -------------------------------------------------------------------------------- /Sample ROM/libultra/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/helper.h -------------------------------------------------------------------------------- /Sample ROM/libultra/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/main.c -------------------------------------------------------------------------------- /Sample ROM/libultra/makeclean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/makeclean.bat -------------------------------------------------------------------------------- /Sample ROM/libultra/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/makefile -------------------------------------------------------------------------------- /Sample ROM/libultra/makeme.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/makeme.bat -------------------------------------------------------------------------------- /Sample ROM/libultra/models/binary/catherineMdl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/models/binary/catherineMdl.bin -------------------------------------------------------------------------------- /Sample ROM/libultra/models/binary/catherineMdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/models/binary/catherineMdl.h -------------------------------------------------------------------------------- /Sample ROM/libultra/models/static/catherineMdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/models/static/catherineMdl.h -------------------------------------------------------------------------------- /Sample ROM/libultra/models/textures/catherineTex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/models/textures/catherineTex.h -------------------------------------------------------------------------------- /Sample ROM/libultra/sausage.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/sausage.ld -------------------------------------------------------------------------------- /Sample ROM/libultra/sausage64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/sausage64.c -------------------------------------------------------------------------------- /Sample ROM/libultra/sausage64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/sausage64.h -------------------------------------------------------------------------------- /Sample ROM/libultra/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/spec -------------------------------------------------------------------------------- /Sample ROM/libultra/stage00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/stage00.c -------------------------------------------------------------------------------- /Sample ROM/libultra/stages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/stages.h -------------------------------------------------------------------------------- /Sample ROM/libultra/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/usb.c -------------------------------------------------------------------------------- /Sample ROM/libultra/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/Sample ROM/libultra/usb.h -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buu342/N64-Sausage64/HEAD/azure-pipelines.yml --------------------------------------------------------------------------------