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

@@ -16,7 +16,7 @@
sta ID ; Tape record ID to P1L
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
@@ -33,7 +33,7 @@ error: jmp return1 ; or 1 if not
ldx #$00
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