1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00
cc65/libsrc/geos-common/memory/copyfstring.s

19 lines
357 B
ArmAsm

;
; Maciej 'YTM/Elysium' Witkowiak
;
; 22.12.99, 29.07.2000
; void CopyFString (char length, char *dest, char* source);
.import DoubleSPop, SetPtrXY
.import popa
.export _CopyFString
.include "jumptab.inc"
_CopyFString:
jsr DoubleSPop
jsr popa
jsr SetPtrXY
jmp CopyFString