mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
Update revers.s
This commit is contained in:
parent
2c34723a97
commit
eeefd10f8f
@ -1,27 +1 @@
|
|||||||
;
|
.include "../plus4/revers.s"
|
||||||
; Ullrich von Bassewitz, 07.08.1998
|
|
||||||
;
|
|
||||||
; unsigned char revers (unsigned char onoff);
|
|
||||||
;
|
|
||||||
|
|
||||||
.export _revers
|
|
||||||
|
|
||||||
.include "plus4.inc"
|
|
||||||
|
|
||||||
.proc _revers
|
|
||||||
|
|
||||||
ldx #$00 ; Assume revers off
|
|
||||||
tay ; Test onoff
|
|
||||||
beq L1 ; Jump if off
|
|
||||||
ldx #$80 ; Load on value
|
|
||||||
ldy #$00 ; Assume old value is zero
|
|
||||||
L1: lda RVS ; Load old value
|
|
||||||
stx RVS ; Set new value
|
|
||||||
beq L2 ; Jump if old value zero
|
|
||||||
iny ; Make old value = 1
|
|
||||||
L2: ldx #$00 ; Load high byte of result
|
|
||||||
tya ; Load low byte, set CC
|
|
||||||
rts
|
|
||||||
|
|
||||||
.endproc
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user