1
0

Removed bright/dim escape sequences, as they don't work correctly

This commit is contained in:
acn 2020-06-16 11:12:16 +02:00
parent 78f55e6032
commit 611a536c13
4 changed files with 10 additions and 6 deletions

View File

@ -111,10 +111,12 @@ moveto: push HL
tcbits: db 0b11000011 ;terminal capabilities tcbits: db 0b11000011 ;terminal capabilities
.org 0x0230 .org 0x0230
brites: db '\e[2m\0' ;bright ;brites: db '\e[1m\0' ;bright
brites: db '\0' ;bright
.org 0x0238 .org 0x0238
dims: db '\e[1m\0' ;dim ;dims: db '\e[0m\0' ;dim
dims: db '\0' ;dim
.org 0x0240 .org 0x0240
dlstr: db '\0' ;delete line dlstr: db '\0' ;delete line
@ -167,4 +169,4 @@ uninit: ld B,4 ; HBIOS CIOINIT function 0x04
rst 8 ; do it rst 8 ; do it
ret ; not initialized, so no un-initialize ret ; not initialized, so no un-initialize
 

View File

@ -111,10 +111,12 @@ moveto: push HL
tcbits: db 0b11000011 ;terminal capabilities tcbits: db 0b11000011 ;terminal capabilities
.org 0x0230 .org 0x0230
brites: db '\e[2m\0' ;bright ;brites: db '\e[1m\0' ;bright
brites: db '\0' ;bright
.org 0x0238 .org 0x0238
dims: db '\e[1m\0' ;dim ;dims: db '\e[0m\0' ;dim
dims: db '\0' ;dim
.org 0x0240 .org 0x0240
dlstr: db '\0' ;delete line dlstr: db '\0' ;delete line
@ -167,4 +169,4 @@ uninit: ld B,4 ; HBIOS CIOINIT function 0x04
rst 8 ; do it rst 8 ; do it
ret ; not initialized, so no un-initialize ret ; not initialized, so no un-initialize
 

Binary file not shown.

Binary file not shown.