Fixed various Parser bugs.

This commit is contained in:
2022-10-03 19:58:44 -05:00
parent be91e3c112
commit cd1258a724
4 changed files with 95 additions and 451 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ inc r2
start:
inc r1 ; next char
loadb r3, [r1] ; Load the next character byte into R3
cmpi r3, 0 ; Null byte?
cmp r3, 0 ; Null byte?
je end
inc r2 ; Nope, increment the length counter
jmp start