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