diff options
-rw-r--r-- | assemble.c | 1 | ||||
-rw-r--r-- | programs/subasm.s | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -405,7 +405,6 @@ static inline void free_fixups() { fixup *f = fixups; fixup *fix; for (; f != NULL && f >= fix; f = f->next) { - /*free_tokens(l->tok, l->count);*/ fix = f; free(fix); } diff --git a/programs/subasm.s b/programs/subasm.s index e009ce8..4cec219 100644 --- a/programs/subasm.s +++ b/programs/subasm.s @@ -222,6 +222,7 @@ subasm: jsr chk_cmd ; No, but did we get a full command? bne parse_cmd ; Yes, so skip everything else. jsr lexer ; No, so start lexing this line. +@end: subasm_end: rts ; End of subasm. |