mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
16 lines
256 B
ArmAsm
16 lines
256 B
ArmAsm
;
|
|
; Maciej 'YTM/Alliance' Witkowiak
|
|
;
|
|
; 22.12.99
|
|
|
|
; void CopyString (char *dest, char* source);
|
|
|
|
.import DoubleSPop
|
|
.export _CopyString
|
|
|
|
.include "jumptab.inc"
|
|
|
|
_CopyString:
|
|
jsr DoubleSPop
|
|
jmp CopyString
|