collapseos/apps/zasm
Virgil Dupras 99a7c94c9f zasm: make "double parsing" a bit more solid
It was previously skipped on a local label.
2019-05-14 14:35:34 -04:00
..
tests zasm: make "double parsing" a bit more solid 2019-05-14 14:35:34 -04:00
directive.asm zasm: support char literals 2019-05-14 13:53:12 -04:00
instr.asm zasm: add support for LD r, r' instructions 2019-05-13 16:38:09 -04:00
io.asm
main.asm zasm: make "double parsing" a bit more solid 2019-05-14 14:35:34 -04:00
parse.asm zasm: support char literals 2019-05-14 13:53:12 -04:00
README.md
symbol.asm zasm: add support for local labels 2019-05-13 20:23:10 -04:00
tok.asm
util.asm zasm: add support for relative labels 2019-05-12 22:07:21 -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.