From: Stephan Mühlstrasser Date: Sun, 8 Feb 2015 16:35:40 +0000 (+0100) Subject: Fix formatting, replace tabs with spaces. X-Git-Tag: V2.15~22^2~10 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=498fbb7ed729c58478c27068d021006471917487;p=cc65 Fix formatting, replace tabs with spaces. --- diff --git a/libsrc/osic1p/clrscr.s b/libsrc/osic1p/clrscr.s index 32975526f..48fb5d4f2 100644 --- a/libsrc/osic1p/clrscr.s +++ b/libsrc/osic1p/clrscr.s @@ -13,19 +13,19 @@ BANKS = VIDEORAMSIZE / $100 _clrscr: lda #$20 ;' ' - ldy #BANKS - ldx #$00 + ldy #BANKS + ldx #$00 staloc: - sta SCRNBASE,X - inx - bne staloc - inc staloc+2 - dey - bne staloc - lda #>(SCRNBASE); load high byte - sta staloc+2 ; restore base address + sta SCRNBASE,X + inx + bne staloc + inc staloc+2 + dey + bne staloc + lda #>(SCRNBASE); load high byte + sta staloc+2 ; restore base address - lda #$00 ; cursor in upper left corner + lda #$00 ; cursor in upper left corner sta CURS_X sta CURS_Y - jmp plot ; Set the cursor position + jmp plot ; Set the cursor position