1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-18 00:29:02 +00:00
cc65/libsrc/geos-common/memory/copyfstring.s
2012-02-04 14:53:09 +00:00

20 lines
318 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