├── .cproject ├── .gitignore ├── .project ├── .settings └── language.settings.xml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── palettes ├── readme.txt ├── zxnext-artistic-palette-256.png ├── zxnext-artistic-palette-512.png ├── zxnext-palette-256.act ├── zxnext-palette-256.gpl ├── zxnext-palette-256.pal ├── zxnext-palette-256.png ├── zxnext-palette-256.txt ├── zxnext-palette-512.gpl ├── zxnext-palette-512.pal ├── zxnext-palette-512.png └── zxnext-palette-512.txt ├── src ├── nextbmp.c └── nextraw.c └── todo.txt /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/.project -------------------------------------------------------------------------------- /.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/.settings/language.settings.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/README.md -------------------------------------------------------------------------------- /palettes/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/palettes/readme.txt -------------------------------------------------------------------------------- /palettes/zxnext-artistic-palette-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/palettes/zxnext-artistic-palette-256.png -------------------------------------------------------------------------------- /palettes/zxnext-artistic-palette-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/palettes/zxnext-artistic-palette-512.png -------------------------------------------------------------------------------- /palettes/zxnext-palette-256.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/palettes/zxnext-palette-256.act -------------------------------------------------------------------------------- /palettes/zxnext-palette-256.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/palettes/zxnext-palette-256.gpl -------------------------------------------------------------------------------- /palettes/zxnext-palette-256.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/palettes/zxnext-palette-256.pal -------------------------------------------------------------------------------- /palettes/zxnext-palette-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/palettes/zxnext-palette-256.png -------------------------------------------------------------------------------- /palettes/zxnext-palette-256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/palettes/zxnext-palette-256.txt -------------------------------------------------------------------------------- /palettes/zxnext-palette-512.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/palettes/zxnext-palette-512.gpl -------------------------------------------------------------------------------- /palettes/zxnext-palette-512.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/palettes/zxnext-palette-512.pal -------------------------------------------------------------------------------- /palettes/zxnext-palette-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/palettes/zxnext-palette-512.png -------------------------------------------------------------------------------- /palettes/zxnext-palette-512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/palettes/zxnext-palette-512.txt -------------------------------------------------------------------------------- /src/nextbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/src/nextbmp.c -------------------------------------------------------------------------------- /src/nextraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_bmp_tools/HEAD/src/nextraw.c -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------