mirror of
https://github.com/cc65/cc65.git
synced 2024-11-16 02:10:52 +00:00
23 lines
522 B
ArmAsm
23 lines
522 B
ArmAsm
;
|
|
; Colin Leroy-Mira, 4 Sept. 2024
|
|
;
|
|
; char* stpcpy (char* dest, const char* src);
|
|
;
|
|
|
|
.export _stpcpy
|
|
.import _strcpy
|
|
|
|
.importzp tmp1, ptr2
|
|
|
|
_stpcpy:
|
|
jsr _strcpy
|
|
|
|
ldx ptr2+1 ; Load dest pointer's last high byte
|
|
tya ; Get the last offset strcpy wrote to
|
|
|
|
clc
|
|
adc ptr2 ; Add to low byte value
|
|
bcc :+
|
|
inx
|
|
: rts ; Return pointer to dest's terminator
|