├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── arg.h ├── builtin ├── README.md ├── chip8.lua ├── ebcdic.lua └── uxn.lua ├── embedc.c ├── examples ├── ctrlsilm.txt ├── fizzbuzz.uxn.rom ├── garlic.ch8 ├── ibm.ch8 └── silmparagraph.txt ├── huxd.scd.1 ├── img ├── cp437.png ├── huxd_colors.png ├── logo.png ├── mouse.png ├── mouse2.png ├── normal.png ├── png.png ├── reordering.png ├── rnd.png ├── silm.png ├── unicode.png ├── utf8.png └── uxn.png ├── lua.c ├── main.unuc ├── range.c ├── tables.c ├── unu.c └── utf8.unuc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/README.md -------------------------------------------------------------------------------- /arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/arg.h -------------------------------------------------------------------------------- /builtin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/builtin/README.md -------------------------------------------------------------------------------- /builtin/chip8.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/builtin/chip8.lua -------------------------------------------------------------------------------- /builtin/ebcdic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/builtin/ebcdic.lua -------------------------------------------------------------------------------- /builtin/uxn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/builtin/uxn.lua -------------------------------------------------------------------------------- /embedc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/embedc.c -------------------------------------------------------------------------------- /examples/ctrlsilm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/examples/ctrlsilm.txt -------------------------------------------------------------------------------- /examples/fizzbuzz.uxn.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/examples/fizzbuzz.uxn.rom -------------------------------------------------------------------------------- /examples/garlic.ch8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/examples/garlic.ch8 -------------------------------------------------------------------------------- /examples/ibm.ch8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/examples/ibm.ch8 -------------------------------------------------------------------------------- /examples/silmparagraph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/examples/silmparagraph.txt -------------------------------------------------------------------------------- /huxd.scd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/huxd.scd.1 -------------------------------------------------------------------------------- /img/cp437.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/img/cp437.png -------------------------------------------------------------------------------- /img/huxd_colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/img/huxd_colors.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/img/mouse.png -------------------------------------------------------------------------------- /img/mouse2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/img/mouse2.png -------------------------------------------------------------------------------- /img/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/img/normal.png -------------------------------------------------------------------------------- /img/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/img/png.png -------------------------------------------------------------------------------- /img/reordering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/img/reordering.png -------------------------------------------------------------------------------- /img/rnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/img/rnd.png -------------------------------------------------------------------------------- /img/silm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/img/silm.png -------------------------------------------------------------------------------- /img/unicode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/img/unicode.png -------------------------------------------------------------------------------- /img/utf8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/img/utf8.png -------------------------------------------------------------------------------- /img/uxn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/img/uxn.png -------------------------------------------------------------------------------- /lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/lua.c -------------------------------------------------------------------------------- /main.unuc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/main.unuc -------------------------------------------------------------------------------- /range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/range.c -------------------------------------------------------------------------------- /tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/tables.c -------------------------------------------------------------------------------- /unu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/unu.c -------------------------------------------------------------------------------- /utf8.unuc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiedtl/huxdemp/HEAD/utf8.unuc --------------------------------------------------------------------------------