Removed (pretty inconsistently used) tab chars from source code base.
This commit is contained in:
@@ -4,27 +4,27 @@
|
||||
; char* strcpy (char* dest, const char* src);
|
||||
;
|
||||
|
||||
.export _strcpy
|
||||
.import popax
|
||||
.importzp ptr1, ptr2
|
||||
.export _strcpy
|
||||
.import popax
|
||||
.importzp ptr1, ptr2
|
||||
|
||||
_strcpy:
|
||||
sta ptr1 ; Save src
|
||||
stx ptr1+1
|
||||
jsr popax ; Get dest
|
||||
sta ptr2
|
||||
stx ptr2+1
|
||||
ldy #$00
|
||||
sta ptr1 ; Save src
|
||||
stx ptr1+1
|
||||
jsr popax ; Get dest
|
||||
sta ptr2
|
||||
stx ptr2+1
|
||||
ldy #$00
|
||||
|
||||
L1: lda (ptr1),y
|
||||
sta (ptr2),y
|
||||
beq L9
|
||||
iny
|
||||
bne L1
|
||||
inc ptr1+1
|
||||
inc ptr2+1
|
||||
bne L1
|
||||
L1: lda (ptr1),y
|
||||
sta (ptr2),y
|
||||
beq L9
|
||||
iny
|
||||
bne L1
|
||||
inc ptr1+1
|
||||
inc ptr2+1
|
||||
bne L1
|
||||
|
||||
L9: lda ptr2 ; X still contains high byte
|
||||
rts
|
||||
L9: lda ptr2 ; X still contains high byte
|
||||
rts
|
||||
|
||||
|
||||
Reference in New Issue
Block a user