Removed (pretty inconsistently used) tab chars from source code base.

This commit is contained in:
Oliver Schmidt
2013-05-09 13:56:54 +02:00
parent 44fd1082ae
commit 85885001b1
1773 changed files with 62864 additions and 62868 deletions

View File

@@ -4,8 +4,8 @@
; CC65 runtime: 8x8 => 16 multiplication
;
.export umul8x8r16, umul8x8r16m
.importzp ptr1, ptr3
.export umul8x8r16, umul8x8r16m
.importzp ptr1, ptr3
;---------------------------------------------------------------------------
@@ -19,8 +19,8 @@
umul8x8r16:
sta ptr3
umul8x8r16m:
lda #0 ; Clear byte 1
ldy #8 ; Number of bits
lda #0 ; Clear byte 1
ldy #8 ; Number of bits
lsr ptr1 ; Get first bit of lhs into carry
@L0: bcc @L1
clc
@@ -31,7 +31,7 @@ umul8x8r16m:
bne @L0
tax
stx ptr1+1 ; Result in a/x and ptr1
lda ptr1 ; Load the result
rts ; Done
lda ptr1 ; Load the result
rts ; Done