]> 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 c5134bef327e45a262541463031dcf3257d1fb24..7c8a530be0762f0934424d7e04d55ad24d5fffa3 100644 (file)
@@ -5,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