]> git.sur5r.net Git - cc65/commitdiff
Fix formatting, replace tabs with spaces.
authorStephan Mühlstrasser <stephan.muehlstrasser@web.de>
Sun, 8 Feb 2015 16:35:40 +0000 (17:35 +0100)
committerStephan Mühlstrasser <stephan.muehlstrasser@web.de>
Sun, 8 Feb 2015 16:35:40 +0000 (17:35 +0100)
libsrc/osic1p/clrscr.s

index 32975526f05877f16862a134944af3e2364c1192..48fb5d4f24f5f3867617709d260115c101dad33c 100644 (file)
@@ -13,19 +13,19 @@ BANKS = VIDEORAMSIZE / $100
 \r
 _clrscr:\r
         lda       #$20 ;' '\r
-               ldy       #BANKS\r
-               ldx       #$00\r
+        ldy       #BANKS\r
+        ldx       #$00\r
 staloc:\r
-               sta       SCRNBASE,X\r
-               inx\r
-               bne       staloc\r
-               inc       staloc+2\r
-               dey\r
-               bne       staloc\r
-               lda       #>(SCRNBASE); load high byte\r
-               sta       staloc+2    ; restore base address\r
+        sta       SCRNBASE,X\r
+        inx\r
+        bne       staloc\r
+        inc       staloc+2\r
+        dey\r
+        bne       staloc\r
+        lda       #>(SCRNBASE); load high byte\r
+        sta       staloc+2    ; restore base address\r
 \r
-               lda       #$00        ; cursor in upper left corner\r
+        lda       #$00        ; cursor in upper left corner\r
         sta       CURS_X\r
         sta       CURS_Y\r
-               jmp       plot        ; Set the cursor position\r
+        jmp       plot        ; Set the cursor position\r