diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2020-06-01 16:36:48 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2020-06-01 16:36:48 -0400 |
commit | 0bc02d48d100aff63e40132786a89123ac43ae48 (patch) | |
tree | 16bebe39c4f20e60c4ce8fee8cdfe642d1c11dbf | |
parent | df81112b8369eeca5788a6f28c6b6b85ca911a95 (diff) |
- Deleted some commented code.
- Fixed a bug in SuBAsm.
-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. |