]> git.sur5r.net Git - cc65/blobdiff - libsrc/runtime/push1.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / runtime / push1.s
index d58509a73d029e07a4e32351fadb3428c92bc2d4..0451ecf89efcb59b7ece7a90edd9754bd8c0fc01 100644 (file)
@@ -4,15 +4,15 @@
 ; CC65 runtime: Push (int)1 onto the stack
 ;
 
-               .export         push1
-       .import         pusha0
+        .export         push1
+        .import         pusha0
 
 ; Beware: The optimizer knows about this function!
 
-.proc  push1
+.proc   push1
 
-       lda     #1
-       jmp     pusha0
+        lda     #1
+        jmp     pusha0
 
 .endproc