├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── compile.bat ├── deploy.sh ├── gfxinit.c ├── graphic.c ├── graphic.h ├── main.c ├── main.h ├── models ├── blen64 │ ├── LICENSE │ └── blen64-customized.py └── n64logo.blend ├── n64 cpu rcp.png ├── n64logo.h ├── run.sh ├── run_mupen.sh ├── spec ├── squaresdemo.n64.zip ├── stage00.c └── stage00.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/README.md -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/compile.bat -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/deploy.sh -------------------------------------------------------------------------------- /gfxinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/gfxinit.c -------------------------------------------------------------------------------- /graphic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/graphic.c -------------------------------------------------------------------------------- /graphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/graphic.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/main.h -------------------------------------------------------------------------------- /models/blen64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/models/blen64/LICENSE -------------------------------------------------------------------------------- /models/blen64/blen64-customized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/models/blen64/blen64-customized.py -------------------------------------------------------------------------------- /models/n64logo.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/models/n64logo.blend -------------------------------------------------------------------------------- /n64 cpu rcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/n64 cpu rcp.png -------------------------------------------------------------------------------- /n64logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/n64logo.h -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/run.sh -------------------------------------------------------------------------------- /run_mupen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/run_mupen.sh -------------------------------------------------------------------------------- /spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/spec -------------------------------------------------------------------------------- /squaresdemo.n64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/squaresdemo.n64.zip -------------------------------------------------------------------------------- /stage00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/stage00.c -------------------------------------------------------------------------------- /stage00.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsdf/n64-sdk-demo/HEAD/stage00.h --------------------------------------------------------------------------------