├── .cirrus.yml ├── .github └── workflows │ ├── amd64_linux_gcc.yml │ ├── amd64_macos_gcc.yml │ └── amd64_windows_gcc.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── src ├── cute_aseprite.h ├── gfx2next.c ├── lodepng.c ├── lodepng.h ├── zx0.c └── zx0.h └── todo.txt /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.github/workflows/amd64_linux_gcc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/.github/workflows/amd64_linux_gcc.yml -------------------------------------------------------------------------------- /.github/workflows/amd64_macos_gcc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/.github/workflows/amd64_macos_gcc.yml -------------------------------------------------------------------------------- /.github/workflows/amd64_windows_gcc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/.github/workflows/amd64_windows_gcc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/README.md -------------------------------------------------------------------------------- /src/cute_aseprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/src/cute_aseprite.h -------------------------------------------------------------------------------- /src/gfx2next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/src/gfx2next.c -------------------------------------------------------------------------------- /src/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/src/lodepng.c -------------------------------------------------------------------------------- /src/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/src/lodepng.h -------------------------------------------------------------------------------- /src/zx0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/src/zx0.c -------------------------------------------------------------------------------- /src/zx0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustyPixelsUK/Gfx2Next/HEAD/src/zx0.h -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------