mirror of
https://github.com/ksherlock/itty-bitty-vtty.git
synced 2024-11-21 20:30:56 +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
|
||||
* esc [ ... m
|
||||
* 0 - attributes off
|
||||
* 1 - bold
|
||||
* 4 - underscore
|
||||
* 5 - blink
|
||||
* 7 - inverted
|
||||
|
||||
inc pcount
|
||||
ldx #0
|
||||
:loop lda parms,x
|
||||
@ -465,6 +471,12 @@ csi_m
|
||||
:next inx
|
||||
cpx pcount
|
||||
blt :loop
|
||||
|
||||
* now update - bit 7 indicates inverse.
|
||||
lda SGR
|
||||
and #$80
|
||||
sta draw_inverse
|
||||
|
||||
:rts rts
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user