]> git.sur5r.net Git - cc65/blobdiff - libsrc/runtime/pushaff.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / runtime / pushaff.s
index dd8dc87685421cc2cee5bf225cdf6ef6e5cf1d5d..08d988bb24512b25ed5804c189e00f16b6815f47 100644 (file)
@@ -4,17 +4,17 @@
 ; CC65 runtime: Push a extended with FF onto the stack
 ;
 
-               .export         pushaFF
-       .import         pushax
+        .export         pushaFF
+        .import         pushax
 
 ; Beware: The optimizer knows about this function!
 
-.proc  pushaFF
+.proc   pushaFF
 
-       ldx     #$FF
-       jmp     pushax
+        ldx     #$FF
+        jmp     pushax
 
 .endproc
 
 
-                     
+