├── .clang-format ├── .gitignore ├── LICENSE ├── README.md ├── make.py └── src ├── asm ├── hello_pixel.asm └── stub.asm ├── build.jfdi ├── game.c ├── game.h ├── jfdi ├── limits.h └── main.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/asmfunbox/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/asmfunbox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/asmfunbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/asmfunbox/HEAD/README.md -------------------------------------------------------------------------------- /make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/asmfunbox/HEAD/make.py -------------------------------------------------------------------------------- /src/asm/hello_pixel.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/asmfunbox/HEAD/src/asm/hello_pixel.asm -------------------------------------------------------------------------------- /src/asm/stub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/asmfunbox/HEAD/src/asm/stub.asm -------------------------------------------------------------------------------- /src/build.jfdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/asmfunbox/HEAD/src/build.jfdi -------------------------------------------------------------------------------- /src/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/asmfunbox/HEAD/src/game.c -------------------------------------------------------------------------------- /src/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/asmfunbox/HEAD/src/game.h -------------------------------------------------------------------------------- /src/jfdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/asmfunbox/HEAD/src/jfdi -------------------------------------------------------------------------------- /src/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/asmfunbox/HEAD/src/limits.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabbe/asmfunbox/HEAD/src/main.c --------------------------------------------------------------------------------