Remove stale comments.

This commit is contained in:
Sven Michael Klose 2020-11-20 03:50:19 +01:00 committed by greg-king5
parent 9d62abb7ac
commit 9800555bbb
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@
; Copy src -> dest up to size bytes
ldx tmp1 ; Load low byte of ones complement of size
ldx tmp1
ldy #$00
L1: dex
bne L2
@ -43,7 +43,7 @@ L2: lda (ptr1),y ; Copy one character
; Fill the remaining bytes.
L3: dex ; Counter low byte
beq L6 ; Branch on overflow
beq L6
L4: sta (ptr2),y ; Clear one byte
L5: iny ; Bump pointer
bne L3