1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

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

View File

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