]> git.sur5r.net Git - cc65/blobdiff - libsrc/cbm/chline.s
Made cbm_load() be a fastcall function.
[cc65] / libsrc / cbm / chline.s
index 26be1c7a12b3b549ae08d9466e9c8a42b4c8c434..26603b2febbbcdcfa77dfcb1a6f36b8e6669e79d 100644 (file)
@@ -5,25 +5,25 @@
 ; void chline (unsigned char length);
 ;
 
-       .export         _chlinexy, _chline
-       .import         popa, _gotoxy, cputdirect
-       .importzp       tmp1
+        .export         _chlinexy, _chline
+        .import         popa, _gotoxy, cputdirect
+        .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     #64             ; Horizontal line, screen code
-       jsr     cputdirect      ; Direct output
-       dec     tmp1
-       bne     L1
-L9:    rts
+        cmp     #0              ; Is the length zero?
+        beq     L9              ; Jump if done
+        sta     tmp1
+L1:     lda     #64             ; Horizontal line, screen code
+        jsr     cputdirect      ; Direct output
+        dec     tmp1
+        bne     L1
+L9:     rts