]> git.sur5r.net Git - cc65/blob - libsrc/geos/memory/movedata.s
Remove unused imports
[cc65] / libsrc / geos / memory / movedata.s
1
2 ;
3 ; Maciej 'YTM/Alliance' Witkowiak
4 ;
5 ; 30.10.99
6
7 ; void MoveData         (char* source, char *dest, int length);
8
9             .import popax
10             .export _MoveData
11
12             .include "../inc/jumptab.inc"
13             .include "../inc/geossym.inc"
14
15 _MoveData:
16             sta r2L
17             stx r2H
18             jsr popax
19             sta r1L
20             stx r1H
21             jsr popax
22             sta r0L
23             stx r0H
24             jmp MoveData