]> git.sur5r.net Git - cc65/blobdiff - libsrc/atari/chline.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / atari / chline.s
index e0d0a9629e84128ba747fa9e3a27779785befc13..46eb0f35d94e90d7ac12d13a9f0a595fa2b5fd6f 100644 (file)
@@ -5,25 +5,25 @@
 ; void chline (unsigned char length);
 ;
 
-       .export         _chlinexy, _chline
-       .import         popa, _gotoxy, cputdirect, setcursor
-       .importzp       tmp1
+        .export         _chlinexy, _chline
+        .import         popa, _gotoxy, cputdirect, setcursor
+        .importzp       tmp1
 
 _chlinexy:
-               pha                     ; Save the length
-       jsr     popa            ; Get y
-               jsr     _gotoxy         ; Call this one, will pop params
-       pla                     ; Restore the length
+        pha                     ; Save the length
+        jsr     popa            ; Get y
+        jsr     _gotoxy         ; Call this one, will pop params
+        pla                     ; Restore the length
 
 _chline:
-       cmp     #0              ; Is the length zero?
-       beq     L9              ; Jump if done
-       sta     tmp1
-L1:            lda     #$12+64         ; Horizontal line, screen code
-       jsr     cputdirect      ; Direct output
-       dec     tmp1
-       bne     L1
-L9:    jmp     setcursor
+        cmp     #0              ; Is the length zero?
+        beq     L9              ; Jump if done
+        sta     tmp1
+L1:     lda     #$12+64         ; Horizontal line, screen code
+        jsr     cputdirect      ; Direct output
+        dec     tmp1
+        bne     L1
+L9:     jmp     setcursor