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