├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── assemble.py ├── disassemble.py ├── main.c ├── nanac.h ├── nanac_builtins.c ├── nanac_vm.c ├── test ├── example.asm └── example.tst ├── test_main.c └── tocfile.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/README.md -------------------------------------------------------------------------------- /assemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/assemble.py -------------------------------------------------------------------------------- /disassemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/disassemble.py -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/main.c -------------------------------------------------------------------------------- /nanac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/nanac.h -------------------------------------------------------------------------------- /nanac_builtins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/nanac_builtins.c -------------------------------------------------------------------------------- /nanac_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/nanac_vm.c -------------------------------------------------------------------------------- /test/example.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/test/example.asm -------------------------------------------------------------------------------- /test/example.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/test/example.tst -------------------------------------------------------------------------------- /test_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/test_main.c -------------------------------------------------------------------------------- /tocfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarryR/nanac/HEAD/tocfile.py --------------------------------------------------------------------------------