collapseos/apps/zasm
Virgil Dupras f9ae5ca46b zasm: simplify readWord calling
It always reads in the scratchpad with the same max size. No need for
DE-dancing anymore.
2019-05-01 14:19:43 -04:00
..
emul zasm: simplify readWord calling 2019-05-01 14:19:43 -04:00
tests zasm: add support for the ".dw" directive 2019-05-01 14:07:01 -04:00
README.md Add zasm app 2019-04-16 13:36:57 -04:00
directive.asm zasm: simplify readWord calling 2019-05-01 14:19:43 -04:00
instr.asm zasm: simplify readWord calling 2019-05-01 14:19:43 -04:00
literal.asm zasm: add support for ".db" directive 2019-05-01 11:26:41 -04:00
main.asm zasm: simplify readWord calling 2019-05-01 14:19:43 -04:00
parse.asm zasm: simplify readWord calling 2019-05-01 14:19:43 -04:00
tok.asm zasm: simplify readWord calling 2019-05-01 14:19:43 -04:00
util.asm zasm: code consolidation 2019-04-30 21:13:37 -04:00

README.md

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.