]> git.sur5r.net Git - cc65/blobdiff - libsrc/runtime/ldaui.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / runtime / ldaui.s
index b84783df34631572f5d294b866bbf3e2601fd554..aa3a41c172b3a1dd5e1a612f6c2e14747d182a7c 100644 (file)
@@ -4,13 +4,13 @@
 ; CC65 runtime: Load a unsigned indirect from address in ax
 ;
 
-       .export         ldauidx
-       .importzp       ptr1
+        .export         ldauidx
+        .importzp       ptr1
 
-.proc  ldauidx
-       sta     ptr1
-       stx     ptr1+1
-       ldx     #0
-       lda     (ptr1),y
-       rts
+.proc   ldauidx
+        sta     ptr1
+        stx     ptr1+1
+        ldx     #0
+        lda     (ptr1),y
+        rts
 .endproc