2000-05-28 13:40:48 +00:00
|
|
|
;
|
2001-07-15 16:09:50 +00:00
|
|
|
; Maciej 'YTM/Elysium' Witkowiak
|
2000-05-28 13:40:48 +00:00
|
|
|
;
|
2001-07-15 16:09:50 +00:00
|
|
|
; 30.10.99, 15.07.2001
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-12-21 00:49:25 +00:00
|
|
|
; void* MoveData (char* dest, char *source, int length);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.import popax
|
|
|
|
.export _MoveData
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "jumptab.inc"
|
|
|
|
.include "geossym.inc"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
_MoveData:
|
2013-05-09 11:56:54 +00:00
|
|
|
sta r2L
|
|
|
|
stx r2H
|
|
|
|
jsr popax
|
|
|
|
sta r0L
|
|
|
|
stx r0H
|
|
|
|
jsr popax
|
|
|
|
sta r1L
|
|
|
|
stx r1H
|
|
|
|
jsr MoveData
|
|
|
|
lda r1L ; return dest ptr to be compatible with memmove and memcpy
|
|
|
|
ldx r1H
|
|
|
|
rts
|