2001-10-27 17:13:22 +00:00
|
|
|
;
|
|
|
|
; Maciej 'YTM/Elysium' Witkowiak
|
|
|
|
;
|
|
|
|
; 27.10.2001
|
|
|
|
|
|
|
|
; unsigned char revers (unsigned char onoff);
|
|
|
|
|
|
|
|
.export _revers
|
2002-03-08 16:47:34 +00:00
|
|
|
.importzp tmp1
|
2001-10-27 17:13:22 +00:00
|
|
|
|
2012-01-31 20:49:58 +00:00
|
|
|
.include "geossym.inc"
|
|
|
|
.include "const.inc"
|
2001-10-27 17:13:22 +00:00
|
|
|
|
|
|
|
_revers:
|
2012-02-08 15:23:45 +00:00
|
|
|
tax
|
|
|
|
bne L0 ; turn on
|
|
|
|
lda #0
|
|
|
|
.byte $2c
|
|
|
|
L0: lda #SET_REVERSE
|
|
|
|
sta tmp1
|
2001-10-27 17:13:22 +00:00
|
|
|
|
2012-02-08 15:23:45 +00:00
|
|
|
lda currentMode
|
|
|
|
tax
|
|
|
|
and #SET_REVERSE
|
|
|
|
tay ; store old value
|
|
|
|
txa
|
|
|
|
and #%11011111 ; mask out
|
|
|
|
ora tmp1 ; set new value
|
|
|
|
sta currentMode
|
2001-10-27 17:13:22 +00:00
|
|
|
|
2012-02-08 15:23:45 +00:00
|
|
|
ldx #0
|
|
|
|
tya
|
|
|
|
beq L1
|
|
|
|
lda #1
|
|
|
|
L1: rts
|