Kernel 0.93+

This commit is contained in:
Rémy GIBERT 2019-12-11 17:54:41 +01:00
parent 88040b396f
commit de65255370
4 changed files with 9 additions and 4 deletions

Binary file not shown.

View File

@ -228,7 +228,7 @@ DLG.CTRL.Draw.LBL
.9 rts
*--------------------------------------
DLG.CTRL.Draw.TB
jsr SCRN.LineBufInitEdit
jsr SCRN.LineBufInitTB
jsr DLG.CTRL.GotoOrg
bcs .9
@ -386,7 +386,7 @@ DLG.CTRL.Focus.LBL
clc
rts
DLG.CTRL.Focus.TB
jsr SCRN.LineBufInitEdit
jsr SCRN.LineBufInitTB
jsr DLG.CTRL.GotoOrg
@ -489,7 +489,7 @@ DLG.CTRL.Focus.OL
jmp SCRN.LineBufOut
DLG.CTRL.Focus.BUT
jsr SCRN.LineBufInitNorm
jsr SCRN.LineBufInitBut
jsr DLG.CTRL.GotoOrg

View File

@ -545,6 +545,10 @@ SCRN.LineBufInitDlg
phx
ldx #SEQ.DLG-SEQS
bra SCRN.LineBufInit
SCRN.LineBufInitTB
phx
ldx #SEQ.DLG.TB-SEQS
bra SCRN.LineBufInit
SCRN.LineBufInitBut
phx
ldx #SEQ.DLG.BUT-SEQS

View File

@ -413,7 +413,8 @@ SEQ.DLG .AS "\e[30;46m"
SEQ.DLG.RIGHT .AS "\e[37;40m"
.DA #C.SO,#'x',#C.SI
.DA #0
SEQ.DLG.BUT .AS "\e[93;44m" +INV
SEQ.DLG.BUT .AZ "\e[7m\e[93;44m"
SEQ.DLG.TB .AZ "\e[0m\e[93;44m"
SEQ.INV .AZ "\e[7m"
SEQ.EDIT .AS "\e[0m\e[93;44m" +CEOL
SEQ.CEOL .AZ "\e[K"