From d40940a1ff70bb5bd6428d53dad746c0464cbf87 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Fri, 14 Jun 2019 14:24:51 -0400 Subject: [PATCH] doc/zasm: fix error --- doc/zasm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/zasm.md b/doc/zasm.md index 9eff004..8de15f8 100644 --- a/doc/zasm.md +++ b/doc/zasm.md @@ -20,7 +20,7 @@ execute it! > fnew 1 dest ; create destination file > fopn 0 hello.asm ; open source file in handle 0 > fopn 1 dest ; open dest binary in handle 1 - > zasm 1 3 ; assemble source file into binary file + > zasm 1 2 ; assemble source file into binary file > dest ; call newly compiled file Assembled from the shell > ; Awesome!