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

@@ -15,8 +15,8 @@ void __fastcall__ _poserror (const char* msg)
ExitTurbo();
if (msg && *msg) {
DlgBoxOk(msg, errmsg);
DlgBoxOk(msg, errmsg);
} else {
DlgBoxOk("", errmsg);
DlgBoxOk("", errmsg);
}
}

View File

@@ -4,25 +4,25 @@
; Copy the data segment from the LOAD to the RUN location
;
.export copydata
.import __DATA_LOAD__, __DATA_RUN__, __DATA_SIZE__
.export copydata
.import __DATA_LOAD__, __DATA_RUN__, __DATA_SIZE__
.include "geossym.inc"
.include "jumptab.inc"
.include "geossym.inc"
.include "jumptab.inc"
copydata:
lda #<__DATA_SIZE__ ; no need to check if it is == 0
ldx #>__DATA_SIZE__
sta r2L
stx r2H
lda #<__DATA_SIZE__ ; no need to check if it is == 0
ldx #>__DATA_SIZE__
sta r2L
stx r2H
lda #<__DATA_RUN__
ldx #>__DATA_RUN__
sta r1L
stx r1H
lda #<__DATA_RUN__
ldx #>__DATA_RUN__
sta r1L
stx r1H
lda #<__DATA_LOAD__
ldx #>__DATA_LOAD__
sta r0L
stx r0H
jmp MoveData
lda #<__DATA_LOAD__
ldx #>__DATA_LOAD__
sta r0L
stx r0H
jmp MoveData

View File

@@ -4,7 +4,7 @@
; Maciej 'YTM/Elysium' Witkowiak, 15.07.2001
;
.export _memcpy
.import _MoveData
.export _memcpy
.import _MoveData
_memcpy = _MoveData
_memcpy = _MoveData

View File

@@ -4,7 +4,7 @@
; Maciej 'YTM/Elysium' Witkowiak, 15.07.2001
;
.export _memmove
.import _MoveData
.export _memmove
.import _MoveData
_memmove = _MoveData
_memmove = _MoveData

View File

@@ -6,9 +6,9 @@
; Maciej 'YTM/Elysium' Witkowiak, 20.08.2003
;
.export _memset, _bzero, __bzero
.import _ClearRam, _FillRam
.export _memset, _bzero, __bzero
.import _ClearRam, _FillRam
_bzero = _ClearRam
__bzero = _ClearRam
_memset = _FillRam
_bzero = _ClearRam
__bzero = _ClearRam
_memset = _FillRam

View File

@@ -15,8 +15,8 @@ void __fastcall__ perror(const char* msg)
ExitTurbo();
if (msg && *msg) {
DlgBoxOk(msg, errmsg);
DlgBoxOk(msg, errmsg);
} else {
DlgBoxOk("", errmsg);
DlgBoxOk("", errmsg);
}
}

View File

@@ -12,9 +12,9 @@ unsigned __fastcall__ sleep (unsigned wait)
char typ;
if ( (get_tv()) & TV_NTSC ) {
typ = 60;
typ = 60;
} else {
typ = 50;
typ = 50;
}
Sleep(wait*typ);

View File

@@ -5,19 +5,19 @@
; Zero the bss segment.
;
.export zerobss
.import __BSS_RUN__, __BSS_SIZE__
.include "jumptab.inc"
.include "geossym.inc"
.export zerobss
.import __BSS_RUN__, __BSS_SIZE__
.include "jumptab.inc"
.include "geossym.inc"
zerobss:
lda #<__BSS_SIZE__
ldx #>__BSS_SIZE__
sta r0L
stx r0H
lda #<__BSS_RUN__
ldx #>__BSS_RUN__
sta r1L
stx r1H
jmp ClearRam
lda #<__BSS_SIZE__
ldx #>__BSS_SIZE__
sta r0L
stx r0H
lda #<__BSS_RUN__
ldx #>__BSS_RUN__
sta r1L
stx r1H
jmp ClearRam