1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-09 01:28:58 +00:00
cc65/libsrc/geos/memory/copystring.s

17 lines
237 B
ArmAsm
Raw Normal View History

;
; Maciej 'YTM/Alliance' Witkowiak
;
; 22.12.99
; void CopyString (char *dest, char* source);
.import DoubleSPop
.export _CopyString
.include "../inc/jumptab.inc"
_CopyString:
jsr DoubleSPop
jmp CopyString