├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bf16.c ├── bf16.vcxproj ├── bf16_grayscale.c ├── examples ├── badapple.b └── snake.b └── vcpkg.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p2r3/bf16/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p2r3/bf16/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p2r3/bf16/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p2r3/bf16/HEAD/README.md -------------------------------------------------------------------------------- /bf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p2r3/bf16/HEAD/bf16.c -------------------------------------------------------------------------------- /bf16.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p2r3/bf16/HEAD/bf16.vcxproj -------------------------------------------------------------------------------- /bf16_grayscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p2r3/bf16/HEAD/bf16_grayscale.c -------------------------------------------------------------------------------- /examples/badapple.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p2r3/bf16/HEAD/examples/badapple.b -------------------------------------------------------------------------------- /examples/snake.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p2r3/bf16/HEAD/examples/snake.b -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p2r3/bf16/HEAD/vcpkg.json --------------------------------------------------------------------------------