├── .cproject ├── .gitignore ├── .project ├── CHANGELOG.md ├── COPYING ├── Makefile ├── README.md ├── compilation ├── README.md ├── games.md ├── level9-boot.zip ├── level9.zip ├── resources │ ├── SPUI-0.4.2.zip │ ├── autoexec.bas │ ├── autoexec.txt │ ├── case-cover-display.pdf │ ├── case-cover-print.pdf │ ├── case-cover-screenshot.png │ ├── menu.ini │ ├── run.bas │ ├── run.gde │ └── run.txt └── screenshots │ ├── adventure-quest.png │ ├── archers.png │ ├── colossal-adventure.png │ ├── dungeon-adventure.png │ ├── emerald-isle.png │ ├── erik-the-viking.png │ ├── gnome-ranger1.png │ ├── gnome-ranger2.png │ ├── growing-pains-of-adrian-mole.png │ ├── ingrids-back1.png │ ├── ingrids-back2.png │ ├── knight-orc1.png │ ├── knight-orc2.png │ ├── lancelot1.png │ ├── lancelot2.png │ ├── lords-of-time1.png │ ├── lords-of-time2.png │ ├── price-of-magik1.png │ ├── price-of-magik2.png │ ├── red-moon1.png │ ├── red-moon2.png │ ├── return-to-eden.png │ ├── scapeghost1.png │ ├── scapeghost2.png │ ├── secret-diary-of-adrian-mole.png │ ├── snowball.png │ └── worm-in-paradise.png ├── configure.m4 ├── gfx ├── mouse.spr └── prompt.spr ├── images ├── mouse.bmp └── prompt.bmp ├── memory_map.txt ├── scripts ├── run_cspect.bat └── run_zesarux.bat ├── src ├── QLStyle.fzx ├── QLStyle.ttf ├── QLStyle_tshr.fzx ├── _ff_pd_QLStyle.asm ├── asm_in_mouse_kempston.asm ├── asm_in_mouse_kempston_wheel.asm ├── crt_driver_instantiation.asm.m4 ├── ide_friendly.h ├── image_scroll.asm ├── image_scroll.h ├── image_slideshow.c ├── image_slideshow.h ├── in_key_translation_table.asm ├── interrupt.asm ├── layer2.c ├── layer2.h ├── level9.c ├── level9.h ├── main.c ├── memory_paging.asm ├── memory_paging.h ├── mouse.c ├── mouse.h ├── scroll_prompt.asm ├── sprite.c ├── sprite.h ├── text_color.asm ├── text_color.h ├── tshr_01_output_fzx_custom.asm ├── tshr_01_output_fzx_custom.m4 ├── zx_01_input_kbd_inkey_custom.asm ├── zx_01_input_kbd_inkey_custom.m4 ├── zx_01_output_fzx_custom.asm └── zx_01_output_fzx_custom.m4 ├── todo.txt └── tools ├── convert_bitmap ├── Makefile └── src │ └── convert_bitmap.c └── convert_gfx ├── .gitignore ├── Makefile ├── convert_gfx.sln ├── convert_gfx.vcxproj └── src ├── convert_gfx.c ├── level9_gfx.c └── level9_gfx.h /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/.project -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/README.md -------------------------------------------------------------------------------- /compilation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/README.md -------------------------------------------------------------------------------- /compilation/games.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/games.md -------------------------------------------------------------------------------- /compilation/level9-boot.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/level9-boot.zip -------------------------------------------------------------------------------- /compilation/level9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/level9.zip -------------------------------------------------------------------------------- /compilation/resources/SPUI-0.4.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/resources/SPUI-0.4.2.zip -------------------------------------------------------------------------------- /compilation/resources/autoexec.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/resources/autoexec.bas -------------------------------------------------------------------------------- /compilation/resources/autoexec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/resources/autoexec.txt -------------------------------------------------------------------------------- /compilation/resources/case-cover-display.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/resources/case-cover-display.pdf -------------------------------------------------------------------------------- /compilation/resources/case-cover-print.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/resources/case-cover-print.pdf -------------------------------------------------------------------------------- /compilation/resources/case-cover-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/resources/case-cover-screenshot.png -------------------------------------------------------------------------------- /compilation/resources/menu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/resources/menu.ini -------------------------------------------------------------------------------- /compilation/resources/run.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/resources/run.bas -------------------------------------------------------------------------------- /compilation/resources/run.gde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/resources/run.gde -------------------------------------------------------------------------------- /compilation/resources/run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/resources/run.txt -------------------------------------------------------------------------------- /compilation/screenshots/adventure-quest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/adventure-quest.png -------------------------------------------------------------------------------- /compilation/screenshots/archers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/archers.png -------------------------------------------------------------------------------- /compilation/screenshots/colossal-adventure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/colossal-adventure.png -------------------------------------------------------------------------------- /compilation/screenshots/dungeon-adventure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/dungeon-adventure.png -------------------------------------------------------------------------------- /compilation/screenshots/emerald-isle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/emerald-isle.png -------------------------------------------------------------------------------- /compilation/screenshots/erik-the-viking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/erik-the-viking.png -------------------------------------------------------------------------------- /compilation/screenshots/gnome-ranger1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/gnome-ranger1.png -------------------------------------------------------------------------------- /compilation/screenshots/gnome-ranger2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/gnome-ranger2.png -------------------------------------------------------------------------------- /compilation/screenshots/growing-pains-of-adrian-mole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/growing-pains-of-adrian-mole.png -------------------------------------------------------------------------------- /compilation/screenshots/ingrids-back1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/ingrids-back1.png -------------------------------------------------------------------------------- /compilation/screenshots/ingrids-back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/ingrids-back2.png -------------------------------------------------------------------------------- /compilation/screenshots/knight-orc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/knight-orc1.png -------------------------------------------------------------------------------- /compilation/screenshots/knight-orc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/knight-orc2.png -------------------------------------------------------------------------------- /compilation/screenshots/lancelot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/lancelot1.png -------------------------------------------------------------------------------- /compilation/screenshots/lancelot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/lancelot2.png -------------------------------------------------------------------------------- /compilation/screenshots/lords-of-time1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/lords-of-time1.png -------------------------------------------------------------------------------- /compilation/screenshots/lords-of-time2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/lords-of-time2.png -------------------------------------------------------------------------------- /compilation/screenshots/price-of-magik1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/price-of-magik1.png -------------------------------------------------------------------------------- /compilation/screenshots/price-of-magik2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/price-of-magik2.png -------------------------------------------------------------------------------- /compilation/screenshots/red-moon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/red-moon1.png -------------------------------------------------------------------------------- /compilation/screenshots/red-moon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/red-moon2.png -------------------------------------------------------------------------------- /compilation/screenshots/return-to-eden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/return-to-eden.png -------------------------------------------------------------------------------- /compilation/screenshots/scapeghost1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/scapeghost1.png -------------------------------------------------------------------------------- /compilation/screenshots/scapeghost2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/scapeghost2.png -------------------------------------------------------------------------------- /compilation/screenshots/secret-diary-of-adrian-mole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/secret-diary-of-adrian-mole.png -------------------------------------------------------------------------------- /compilation/screenshots/snowball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/snowball.png -------------------------------------------------------------------------------- /compilation/screenshots/worm-in-paradise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/compilation/screenshots/worm-in-paradise.png -------------------------------------------------------------------------------- /configure.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/configure.m4 -------------------------------------------------------------------------------- /gfx/mouse.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/gfx/mouse.spr -------------------------------------------------------------------------------- /gfx/prompt.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/gfx/prompt.spr -------------------------------------------------------------------------------- /images/mouse.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/images/mouse.bmp -------------------------------------------------------------------------------- /images/prompt.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/images/prompt.bmp -------------------------------------------------------------------------------- /memory_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/memory_map.txt -------------------------------------------------------------------------------- /scripts/run_cspect.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/scripts/run_cspect.bat -------------------------------------------------------------------------------- /scripts/run_zesarux.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/scripts/run_zesarux.bat -------------------------------------------------------------------------------- /src/QLStyle.fzx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/QLStyle.fzx -------------------------------------------------------------------------------- /src/QLStyle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/QLStyle.ttf -------------------------------------------------------------------------------- /src/QLStyle_tshr.fzx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/QLStyle_tshr.fzx -------------------------------------------------------------------------------- /src/_ff_pd_QLStyle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/_ff_pd_QLStyle.asm -------------------------------------------------------------------------------- /src/asm_in_mouse_kempston.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/asm_in_mouse_kempston.asm -------------------------------------------------------------------------------- /src/asm_in_mouse_kempston_wheel.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/asm_in_mouse_kempston_wheel.asm -------------------------------------------------------------------------------- /src/crt_driver_instantiation.asm.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/crt_driver_instantiation.asm.m4 -------------------------------------------------------------------------------- /src/ide_friendly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/ide_friendly.h -------------------------------------------------------------------------------- /src/image_scroll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/image_scroll.asm -------------------------------------------------------------------------------- /src/image_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/image_scroll.h -------------------------------------------------------------------------------- /src/image_slideshow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/image_slideshow.c -------------------------------------------------------------------------------- /src/image_slideshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/image_slideshow.h -------------------------------------------------------------------------------- /src/in_key_translation_table.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/in_key_translation_table.asm -------------------------------------------------------------------------------- /src/interrupt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/interrupt.asm -------------------------------------------------------------------------------- /src/layer2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/layer2.c -------------------------------------------------------------------------------- /src/layer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/layer2.h -------------------------------------------------------------------------------- /src/level9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/level9.c -------------------------------------------------------------------------------- /src/level9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/level9.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/main.c -------------------------------------------------------------------------------- /src/memory_paging.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/memory_paging.asm -------------------------------------------------------------------------------- /src/memory_paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/memory_paging.h -------------------------------------------------------------------------------- /src/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/mouse.c -------------------------------------------------------------------------------- /src/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/mouse.h -------------------------------------------------------------------------------- /src/scroll_prompt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/scroll_prompt.asm -------------------------------------------------------------------------------- /src/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/sprite.c -------------------------------------------------------------------------------- /src/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/sprite.h -------------------------------------------------------------------------------- /src/text_color.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/text_color.asm -------------------------------------------------------------------------------- /src/text_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/text_color.h -------------------------------------------------------------------------------- /src/tshr_01_output_fzx_custom.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/tshr_01_output_fzx_custom.asm -------------------------------------------------------------------------------- /src/tshr_01_output_fzx_custom.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/tshr_01_output_fzx_custom.m4 -------------------------------------------------------------------------------- /src/zx_01_input_kbd_inkey_custom.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/zx_01_input_kbd_inkey_custom.asm -------------------------------------------------------------------------------- /src/zx_01_input_kbd_inkey_custom.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/zx_01_input_kbd_inkey_custom.m4 -------------------------------------------------------------------------------- /src/zx_01_output_fzx_custom.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/zx_01_output_fzx_custom.asm -------------------------------------------------------------------------------- /src/zx_01_output_fzx_custom.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/src/zx_01_output_fzx_custom.m4 -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/todo.txt -------------------------------------------------------------------------------- /tools/convert_bitmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/tools/convert_bitmap/Makefile -------------------------------------------------------------------------------- /tools/convert_bitmap/src/convert_bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/tools/convert_bitmap/src/convert_bitmap.c -------------------------------------------------------------------------------- /tools/convert_gfx/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | .vs/ 3 | x64/ 4 | *.vcxproj.user 5 | -------------------------------------------------------------------------------- /tools/convert_gfx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/tools/convert_gfx/Makefile -------------------------------------------------------------------------------- /tools/convert_gfx/convert_gfx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/tools/convert_gfx/convert_gfx.sln -------------------------------------------------------------------------------- /tools/convert_gfx/convert_gfx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/tools/convert_gfx/convert_gfx.vcxproj -------------------------------------------------------------------------------- /tools/convert_gfx/src/convert_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/tools/convert_gfx/src/convert_gfx.c -------------------------------------------------------------------------------- /tools/convert_gfx/src/level9_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/tools/convert_gfx/src/level9_gfx.c -------------------------------------------------------------------------------- /tools/convert_gfx/src/level9_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbylund/zxnext_level9/HEAD/tools/convert_gfx/src/level9_gfx.h --------------------------------------------------------------------------------