├── .github └── workflows │ └── build.yml ├── .gitignore ├── CONTRIBUTING.md ├── Makefile ├── README.md ├── assembly ├── .gitignore ├── Makefile ├── kick-assembler │ ├── Makefile │ └── typing.asm ├── mode4-demo.asm ├── mode4-palette.bin ├── mode4-tilemap.bin ├── mode4-tiles.bin ├── mode7-bitmap-cut.bin ├── mode7-bitmap.bin ├── mode7-demo.asm ├── mode7-palette.bin ├── mylife.s ├── sprite-demo.asm ├── terminal.asm ├── vera.inc └── x16-matriculate-text │ ├── LICENSE │ ├── README.md │ ├── matriculate.asm │ ├── matriculate_vars.asm │ ├── style-guide.txt │ ├── system.asm │ ├── system.inc │ ├── system_vars.asm │ └── vera.inc ├── basic-sprite ├── .gitignore ├── Makefile ├── prolog.inc └── smiley.png ├── basic ├── LOGO.BAS ├── acey-ducey.bas ├── affine.bas ├── aritm-x16.bas ├── balls.bas ├── basic-benchmark.bas ├── blinken.bas ├── charfractal.bas ├── chartable.bas ├── cx16logo.bas ├── fastfract256.bas ├── fractal256.bas ├── fractalland.bas ├── frog.bas ├── koala.bas ├── maze.bas ├── raytracer.bas ├── retro_wrestling.bas ├── snake-no-dim.bas ├── snake.bas ├── swimmer.bas ├── tile4bpp.bas ├── time.bas ├── traveller-ship.bas ├── traveller-trader.bas ├── traveller-uwp.bas └── x16-logo.bas ├── ca65 └── mylife ├── cc65-audio ├── Makefile ├── main.c └── test.vgm ├── cc65-sprite ├── Makefile ├── balloon.png └── demo.c ├── layer demo ├── README.txt ├── layer-demo.bas └── layer-demo.png ├── petdrawx16 ├── MakeWin10.bat ├── Makefile ├── pdcharsel_color.bin ├── pdcharsel_text.bin ├── pdcolpick_color.bin ├── pdcolpick_text.bin ├── petdrawx16.asm ├── x16help_color.bin └── x16help_text.bin └── tools ├── bas2prg.py ├── bin2c.py ├── png2sprite.py ├── renumber.py └── requirements.txt /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/README.md -------------------------------------------------------------------------------- /assembly/.gitignore: -------------------------------------------------------------------------------- 1 | *.prg 2 | disk.d64 3 | -------------------------------------------------------------------------------- /assembly/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/Makefile -------------------------------------------------------------------------------- /assembly/kick-assembler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/kick-assembler/Makefile -------------------------------------------------------------------------------- /assembly/kick-assembler/typing.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/kick-assembler/typing.asm -------------------------------------------------------------------------------- /assembly/mode4-demo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/mode4-demo.asm -------------------------------------------------------------------------------- /assembly/mode4-palette.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/mode4-palette.bin -------------------------------------------------------------------------------- /assembly/mode4-tilemap.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/mode4-tilemap.bin -------------------------------------------------------------------------------- /assembly/mode4-tiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/mode4-tiles.bin -------------------------------------------------------------------------------- /assembly/mode7-bitmap-cut.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/mode7-bitmap-cut.bin -------------------------------------------------------------------------------- /assembly/mode7-bitmap.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/mode7-bitmap.bin -------------------------------------------------------------------------------- /assembly/mode7-demo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/mode7-demo.asm -------------------------------------------------------------------------------- /assembly/mode7-palette.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/mode7-palette.bin -------------------------------------------------------------------------------- /assembly/mylife.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/mylife.s -------------------------------------------------------------------------------- /assembly/sprite-demo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/sprite-demo.asm -------------------------------------------------------------------------------- /assembly/terminal.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/terminal.asm -------------------------------------------------------------------------------- /assembly/vera.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/vera.inc -------------------------------------------------------------------------------- /assembly/x16-matriculate-text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/x16-matriculate-text/LICENSE -------------------------------------------------------------------------------- /assembly/x16-matriculate-text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/x16-matriculate-text/README.md -------------------------------------------------------------------------------- /assembly/x16-matriculate-text/matriculate.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/x16-matriculate-text/matriculate.asm -------------------------------------------------------------------------------- /assembly/x16-matriculate-text/matriculate_vars.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/x16-matriculate-text/matriculate_vars.asm -------------------------------------------------------------------------------- /assembly/x16-matriculate-text/style-guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/x16-matriculate-text/style-guide.txt -------------------------------------------------------------------------------- /assembly/x16-matriculate-text/system.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/x16-matriculate-text/system.asm -------------------------------------------------------------------------------- /assembly/x16-matriculate-text/system.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/x16-matriculate-text/system.inc -------------------------------------------------------------------------------- /assembly/x16-matriculate-text/system_vars.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/x16-matriculate-text/system_vars.asm -------------------------------------------------------------------------------- /assembly/x16-matriculate-text/vera.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/assembly/x16-matriculate-text/vera.inc -------------------------------------------------------------------------------- /basic-sprite/.gitignore: -------------------------------------------------------------------------------- 1 | smiley.inc 2 | -------------------------------------------------------------------------------- /basic-sprite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic-sprite/Makefile -------------------------------------------------------------------------------- /basic-sprite/prolog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic-sprite/prolog.inc -------------------------------------------------------------------------------- /basic-sprite/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic-sprite/smiley.png -------------------------------------------------------------------------------- /basic/LOGO.BAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/LOGO.BAS -------------------------------------------------------------------------------- /basic/acey-ducey.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/acey-ducey.bas -------------------------------------------------------------------------------- /basic/affine.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/affine.bas -------------------------------------------------------------------------------- /basic/aritm-x16.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/aritm-x16.bas -------------------------------------------------------------------------------- /basic/balls.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/balls.bas -------------------------------------------------------------------------------- /basic/basic-benchmark.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/basic-benchmark.bas -------------------------------------------------------------------------------- /basic/blinken.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/blinken.bas -------------------------------------------------------------------------------- /basic/charfractal.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/charfractal.bas -------------------------------------------------------------------------------- /basic/chartable.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/chartable.bas -------------------------------------------------------------------------------- /basic/cx16logo.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/cx16logo.bas -------------------------------------------------------------------------------- /basic/fastfract256.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/fastfract256.bas -------------------------------------------------------------------------------- /basic/fractal256.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/fractal256.bas -------------------------------------------------------------------------------- /basic/fractalland.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/fractalland.bas -------------------------------------------------------------------------------- /basic/frog.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/frog.bas -------------------------------------------------------------------------------- /basic/koala.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/koala.bas -------------------------------------------------------------------------------- /basic/maze.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/maze.bas -------------------------------------------------------------------------------- /basic/raytracer.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/raytracer.bas -------------------------------------------------------------------------------- /basic/retro_wrestling.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/retro_wrestling.bas -------------------------------------------------------------------------------- /basic/snake-no-dim.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/snake-no-dim.bas -------------------------------------------------------------------------------- /basic/snake.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/snake.bas -------------------------------------------------------------------------------- /basic/swimmer.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/swimmer.bas -------------------------------------------------------------------------------- /basic/tile4bpp.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/tile4bpp.bas -------------------------------------------------------------------------------- /basic/time.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/time.bas -------------------------------------------------------------------------------- /basic/traveller-ship.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/traveller-ship.bas -------------------------------------------------------------------------------- /basic/traveller-trader.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/traveller-trader.bas -------------------------------------------------------------------------------- /basic/traveller-uwp.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/traveller-uwp.bas -------------------------------------------------------------------------------- /basic/x16-logo.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/basic/x16-logo.bas -------------------------------------------------------------------------------- /ca65/mylife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/ca65/mylife -------------------------------------------------------------------------------- /cc65-audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/cc65-audio/Makefile -------------------------------------------------------------------------------- /cc65-audio/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/cc65-audio/main.c -------------------------------------------------------------------------------- /cc65-audio/test.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/cc65-audio/test.vgm -------------------------------------------------------------------------------- /cc65-sprite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/cc65-sprite/Makefile -------------------------------------------------------------------------------- /cc65-sprite/balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/cc65-sprite/balloon.png -------------------------------------------------------------------------------- /cc65-sprite/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/cc65-sprite/demo.c -------------------------------------------------------------------------------- /layer demo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/layer demo/README.txt -------------------------------------------------------------------------------- /layer demo/layer-demo.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/layer demo/layer-demo.bas -------------------------------------------------------------------------------- /layer demo/layer-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/layer demo/layer-demo.png -------------------------------------------------------------------------------- /petdrawx16/MakeWin10.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/petdrawx16/MakeWin10.bat -------------------------------------------------------------------------------- /petdrawx16/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/petdrawx16/Makefile -------------------------------------------------------------------------------- /petdrawx16/pdcharsel_color.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/petdrawx16/pdcharsel_color.bin -------------------------------------------------------------------------------- /petdrawx16/pdcharsel_text.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/petdrawx16/pdcharsel_text.bin -------------------------------------------------------------------------------- /petdrawx16/pdcolpick_color.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/petdrawx16/pdcolpick_color.bin -------------------------------------------------------------------------------- /petdrawx16/pdcolpick_text.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/petdrawx16/pdcolpick_text.bin -------------------------------------------------------------------------------- /petdrawx16/petdrawx16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/petdrawx16/petdrawx16.asm -------------------------------------------------------------------------------- /petdrawx16/x16help_color.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/petdrawx16/x16help_color.bin -------------------------------------------------------------------------------- /petdrawx16/x16help_text.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/petdrawx16/x16help_text.bin -------------------------------------------------------------------------------- /tools/bas2prg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/tools/bas2prg.py -------------------------------------------------------------------------------- /tools/bin2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/tools/bin2c.py -------------------------------------------------------------------------------- /tools/png2sprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/tools/png2sprite.py -------------------------------------------------------------------------------- /tools/renumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X16Community/x16-demo/HEAD/tools/renumber.py -------------------------------------------------------------------------------- /tools/requirements.txt: -------------------------------------------------------------------------------- 1 | Click>=7.0 2 | numpy>=1.16.0 3 | Pillow>=8.0.0 --------------------------------------------------------------------------------