1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-10 23:29:05 +00:00
cc65/libsrc/geos-cbm/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