mirror of
https://github.com/cc65/cc65.git
synced 2026-04-20 17:20:49 +00:00
Removed (pretty inconsistently used) tab chars from source code base.
This commit is contained in:
+33
-33
@@ -4,57 +4,57 @@
|
||||
; CC65 runtime: Make boolean according to flags
|
||||
;
|
||||
|
||||
.export boolne, booleq, boollt, boolle, boolgt, boolge
|
||||
.export boolult, boolule, boolugt, booluge
|
||||
.export boolne, booleq, boollt, boolle, boolgt, boolge
|
||||
.export boolult, boolule, boolugt, booluge
|
||||
|
||||
|
||||
boolne: bne ret1
|
||||
ldx #$00
|
||||
txa
|
||||
rts
|
||||
boolne: bne ret1
|
||||
ldx #$00
|
||||
txa
|
||||
rts
|
||||
|
||||
|
||||
booleq: beq ret1
|
||||
ldx #$00
|
||||
txa
|
||||
rts
|
||||
booleq: beq ret1
|
||||
ldx #$00
|
||||
txa
|
||||
rts
|
||||
|
||||
|
||||
boolle: beq ret1
|
||||
boollt: bmi ret1
|
||||
ldx #$00
|
||||
txa
|
||||
rts
|
||||
boolle: beq ret1
|
||||
boollt: bmi ret1
|
||||
ldx #$00
|
||||
txa
|
||||
rts
|
||||
|
||||
|
||||
boolgt: beq L0
|
||||
boolge: bpl ret1
|
||||
L0: ldx #$00
|
||||
txa
|
||||
rts
|
||||
boolgt: beq L0
|
||||
boolge: bpl ret1
|
||||
L0: ldx #$00
|
||||
txa
|
||||
rts
|
||||
|
||||
|
||||
boolule:
|
||||
beq ret1
|
||||
beq ret1
|
||||
boolult:
|
||||
bcc ret1
|
||||
ldx #$00
|
||||
txa
|
||||
rts
|
||||
bcc ret1
|
||||
ldx #$00
|
||||
txa
|
||||
rts
|
||||
|
||||
|
||||
boolugt:
|
||||
beq L1
|
||||
beq L1
|
||||
booluge:
|
||||
bcs ret1
|
||||
L1: ldx #$00
|
||||
txa
|
||||
rts
|
||||
bcs ret1
|
||||
L1: ldx #$00
|
||||
txa
|
||||
rts
|
||||
|
||||
|
||||
ret1: ldx #$00
|
||||
lda #$01
|
||||
rts
|
||||
ret1: ldx #$00
|
||||
lda #$01
|
||||
rts
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user