mirror of
https://github.com/ksherlock/itty-bitty-vtty.git
synced 2024-11-24 08:30:54 +00:00
inverse support
This commit is contained in:
parent
11d62bb333
commit
2a8a409194
12
vt100.csi.S
12
vt100.csi.S
@ -451,6 +451,12 @@ mode_LNM
|
|||||||
|
|
||||||
csi_m
|
csi_m
|
||||||
* esc [ ... m
|
* esc [ ... m
|
||||||
|
* 0 - attributes off
|
||||||
|
* 1 - bold
|
||||||
|
* 4 - underscore
|
||||||
|
* 5 - blink
|
||||||
|
* 7 - inverted
|
||||||
|
|
||||||
inc pcount
|
inc pcount
|
||||||
ldx #0
|
ldx #0
|
||||||
:loop lda parms,x
|
:loop lda parms,x
|
||||||
@ -465,6 +471,12 @@ csi_m
|
|||||||
:next inx
|
:next inx
|
||||||
cpx pcount
|
cpx pcount
|
||||||
blt :loop
|
blt :loop
|
||||||
|
|
||||||
|
* now update - bit 7 indicates inverse.
|
||||||
|
lda SGR
|
||||||
|
and #$80
|
||||||
|
sta draw_inverse
|
||||||
|
|
||||||
:rts rts
|
:rts rts
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user