]> git.sur5r.net Git - cc65/blobdiff - libsrc/runtime/pushlysp.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / runtime / pushlysp.s
index a91b9f77e319f0add2f1cfe70d077a6e56b83f4a..ca1834265124c3e7b6a03938b6599dd4060446ec 100644 (file)
@@ -5,26 +5,26 @@
 ;
 
 
-       .export         pushlysp
-       .import         pusheax
-       .importzp       sreg, sp
+        .export         pushlysp
+        .import         pusheax
+        .importzp       sreg, sp
 
-.proc  pushlysp
+.proc   pushlysp
 
-       iny
-       iny
-       lda     (sp),y
-       iny
-       sta     sreg
-       lda     (sp),y
-       sta     sreg+1
-       dey
-       dey
-       lda     (sp),y
-       dey
-       tax
-       lda     (sp),y
-       jmp     pusheax
+        iny
+        iny
+        lda     (sp),y
+        iny
+        sta     sreg
+        lda     (sp),y
+        sta     sreg+1
+        dey
+        dey
+        lda     (sp),y
+        dey
+        tax
+        lda     (sp),y
+        jmp     pusheax
 
 .endproc