]> git.sur5r.net Git - cc65/blobdiff - libsrc/geos-common/memory/movedata.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / geos-common / memory / movedata.s
index 656285df5a962899ad9f33d68c2b3c95c5575007..7c8a530be0762f0934424d7e04d55ad24d5fffa3 100644 (file)
@@ -1,4 +1,3 @@
-
 ;
 ; Maciej 'YTM/Elysium' Witkowiak
 ;
@@ -6,22 +5,22 @@
 
 ; void* MoveData         (char* dest, char *source, int length);
 
-           .import popax
-           .export _MoveData
+            .import popax
+            .export _MoveData
 
-           .include "jumptab.inc"
-           .include "geossym.inc"
+            .include "jumptab.inc"
+            .include "geossym.inc"
 
 _MoveData:
-           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
+        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