collapseos/apps/zasm
Virgil Dupras 556be3f0ce zasm: allow for whitespace inside string literals
Also, increase scratchpad size. It wasn't big enough for some
expressions in shell unit.
2019-05-17 16:44:08 -04:00
..
directive.asm zasm: add support for string literals in .db 2019-05-17 16:17:22 -04:00
expr.asm
instr.asm zasm: make instr unt write directly to ioPutC 2019-05-17 15:35:49 -04:00
io.asm
main.asm zasm: make instr unt write directly to ioPutC 2019-05-17 15:35:49 -04:00
parse_z.asm
README.md
symbol.asm
tok.asm zasm: allow for whitespace inside string literals 2019-05-17 16:44:08 -04:00
util_z.asm zasm: add support for string literals in .db 2019-05-17 16:17:22 -04:00

z80 assembler

This is probably the most critical part of the Collapse OS project. If this app can be brought to completion, it pretty much makes the project a success because it ensures self-reproduction.

Running on a "modern" machine

To be able to develop zasm efficiently, libz80 is used to run zasm on a modern machine. The code lives in emul and ran be built with make, provided that you have a copy libz80 living in emul/libz80.

The resulting zasm binary takes asm code in stdin and spits binary in stdout.