Fixed many comments

This commit is contained in:
Stefan A. Haubenthal
2025-03-24 20:52:55 +01:00
parent 9f5a195dc2
commit 774e275965
50 changed files with 84 additions and 85 deletions

View File

@@ -21,7 +21,7 @@
ldy #$80
jsr LOADT ; Read data from tape
bcs error
jmp return0 ; Return 0 if sucessful
jmp return0 ; Return 0 if successful
error: jmp return1 ; or 1 if not
.endproc
@@ -40,7 +40,7 @@ error: jmp return1 ; or 1 if not
ldy #$80
jsr DUMPT ; Write data to tape
bcs error
jmp return0 ; Return 0 if sucessful
jmp return0 ; Return 0 if successful
error: jmp return1 ; or 1 if not
.endproc