From 0482e4d6e4e2bcba3116e2eee9a98e3d374b28f5 Mon Sep 17 00:00:00 2001 From: Jesse Rosenstock Date: Fri, 18 Sep 2020 08:42:56 +0200 Subject: [PATCH] Fix CRLFs introduced by fe3f267 --- libsrc/runtime/bcast.s | 42 ++++++++++++++++++++--------------------- libsrc/runtime/lbcast.s | 40 +++++++++++++++++++-------------------- 2 files changed, 41 insertions(+), 41 deletions(-) diff --git a/libsrc/runtime/bcast.s b/libsrc/runtime/bcast.s index bb37b6ec0..bc228d1b7 100644 --- a/libsrc/runtime/bcast.s +++ b/libsrc/runtime/bcast.s @@ -1,21 +1,21 @@ -; -; acqn, 01.16.2020 -; -; CC65 runtime: boolean cast -; - - .export bcasta, bcastax - -bcastax: - cpx #0 - bne L1 - -bcasta: - tax - beq L0 ; Zero already in X - -L1: ldx #0 - lda #1 - -L0: rts - +; +; acqn, 01.16.2020 +; +; CC65 runtime: boolean cast +; + + .export bcasta, bcastax + +bcastax: + cpx #0 + bne L1 + +bcasta: + tax + beq L0 ; Zero already in X + +L1: ldx #0 + lda #1 + +L0: rts + diff --git a/libsrc/runtime/lbcast.s b/libsrc/runtime/lbcast.s index 3dee8d956..208442c44 100644 --- a/libsrc/runtime/lbcast.s +++ b/libsrc/runtime/lbcast.s @@ -1,20 +1,20 @@ -; -; acqn, 01.16.2020 -; -; CC65 runtime: boolean cast for longs -; - - .export bcasteax - .importzp sreg, tmp1 - -bcasteax: - stx tmp1 - ldx #0 ; High byte of result - ora tmp1 - ora sreg - ora sreg+1 - beq L0 - - lda #1 -L0: rts - +; +; acqn, 01.16.2020 +; +; CC65 runtime: boolean cast for longs +; + + .export bcasteax + .importzp sreg, tmp1 + +bcasteax: + stx tmp1 + ldx #0 ; High byte of result + ora tmp1 + ora sreg + ora sreg+1 + beq L0 + + lda #1 +L0: rts +