INVFLG is changed by the Atari key
git-svn-id: svn://svn.cc65.org/cc65/trunk@16
b7a2c559-68d2-44c3-8de9-
860c34a00d81
.ifdef DIRECT_SCREEN
.importzp tmp4,ptr4
+ .import _revflag
_cputc:
cmp #$0D ; CR
adc SAVMSC+1
sta ptr4+1
pla ; get char again
- ora INVFLG
+ ora _revflag
ldy COLCRS
sta (ptr4),y
rts
.include "atari.inc"
.export _revers
+ .export _revflag
_revers:
ldx #$00 ; Assume revers off
beq L1 ; Jump if off
ldx #$80 ; Load on value
L1: ldy #$00 ; Assume old value is zero
- lda INVFLG ; Load old value
- stx INVFLG ; Set new value
+ lda _revflag ; Load old value
+ stx _revflag ; 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
+ .data
+
+_revflag:
+ .byte 0