8700: A CPU instruction set.
See doc.txt for details.
See the programs/ directory for some example programs.
Run asm.lua on a code file to assemble:
luajit asm.lua -i test.asm -o program.bin
Compile core.c and run core.exe on a bin file to load it into memory and emulate:
core program.bin
To view the output of the assembler in binary, use the -d flag (Can be used by itself or in conjunction with -o):
luajit asm.lua -i test.asm -d stdout -o program.bin