2015-03-14 21:48:35 +00:00
|
|
|
|
PR#3
|
2015-06-03 18:30:57 +00:00
|
|
|
|
PREFIX /A2OSX.SRC
|
2015-03-14 21:48:35 +00:00
|
|
|
|
NEW
|
|
|
|
|
INC 1
|
|
|
|
|
AUTO 6
|
|
|
|
|
.LIST OFF
|
|
|
|
|
.OP 65C02
|
|
|
|
|
.OR $2000
|
2015-06-03 18:30:57 +00:00
|
|
|
|
.TF /A2OSX.BOOT/DRV/CONSOLE.DRV
|
2015-03-14 21:48:35 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
.INB INC/MACROS.I
|
|
|
|
|
.INB INC/A2OSX.I
|
|
|
|
|
.INB INC/IO.I
|
|
|
|
|
*--------------------------------------
|
2016-01-04 07:22:28 +00:00
|
|
|
|
CURSOR.BLINK.SPEED .EQ 4
|
2015-11-29 22:19:10 +00:00
|
|
|
|
ESCSEQ.MAXLEN .EQ 16
|
2015-06-03 18:30:57 +00:00
|
|
|
|
*--------------------------------------
|
2015-11-29 22:19:10 +00:00
|
|
|
|
ZPBaseL1 .EQ ZPDRV
|
|
|
|
|
ZPBaseL2 .EQ ZPDRV+2
|
|
|
|
|
ZPTmpByte .EQ ZPDRV+4
|
2015-03-14 21:48:35 +00:00
|
|
|
|
*--------------------------------------
|
2015-06-03 18:30:57 +00:00
|
|
|
|
* File Header (16 Bytes)
|
2015-03-14 21:48:35 +00:00
|
|
|
|
*--------------------------------------
|
2015-06-03 18:30:57 +00:00
|
|
|
|
CS.START cld
|
|
|
|
|
jmp Dev.Detect cld,jmp abs=DRV
|
|
|
|
|
.DA #$61 6502,Level 1 (65c02)
|
|
|
|
|
.DA #1 DRV Layout Version 1
|
|
|
|
|
.DA 0
|
|
|
|
|
.DA CS.END-CS.START Code Length
|
|
|
|
|
.DA DEV.HEADER-CS.START Device Header Offset
|
|
|
|
|
.DA DRV.CS.START-CS.START Driver Code Offset
|
|
|
|
|
.DA DRV.CS.END-DRV.CS.START Drv Code Length
|
2015-03-14 21:48:35 +00:00
|
|
|
|
*--------------------------------------
|
2015-06-03 18:30:57 +00:00
|
|
|
|
* Relocation Table
|
2015-03-14 21:48:35 +00:00
|
|
|
|
*--------------------------------------
|
2015-06-03 18:30:57 +00:00
|
|
|
|
L.MSG.DETECT .DA MSG.DETECT
|
|
|
|
|
.DA 0 End Of Reloc Table
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
Dev.Detect >LDYA L.MSG.DETECT
|
2015-11-22 22:30:06 +00:00
|
|
|
|
>SYSCALL SYS.PSTROutYA
|
2015-06-03 18:30:57 +00:00
|
|
|
|
|
|
|
|
|
lda A2osX.SCREENS
|
|
|
|
|
ora #A2osX.SCREENS.C
|
|
|
|
|
sta A2osX.SCREENS
|
|
|
|
|
clc
|
|
|
|
|
rts
|
|
|
|
|
CS.END
|
2015-11-22 22:30:06 +00:00
|
|
|
|
MSG.DETECT >PSTRING "Apple IIe/IIc 80 Col Driver.\n"
|
2015-06-03 18:30:57 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
* Device Header (16 Bytes)
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
DEV.HEADER cld
|
|
|
|
|
jmp (DRV.CS.START,x)
|
|
|
|
|
.DA #S.DEV.F.EVENT+S.DEV.F.COUT+S.DEV.F.CHAR
|
|
|
|
|
>PSTRING "CON" NAME
|
|
|
|
|
.HS 00 NAME must Be 5 bytes long
|
|
|
|
|
.HS 00.00
|
|
|
|
|
.HS 00.00.00.00
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
* Driver Code
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
DRV.CS.START .DA OPEN
|
2015-03-14 21:48:35 +00:00
|
|
|
|
.DA GETEVENT
|
2015-06-03 18:30:57 +00:00
|
|
|
|
.DA COUT
|
2015-03-14 21:48:35 +00:00
|
|
|
|
.DA CLOSE
|
|
|
|
|
.DA GETINFO
|
2015-06-03 18:30:57 +00:00
|
|
|
|
.DA IRQ
|
|
|
|
|
L.DEVINFO .DA DEVINFO
|
2016-01-04 07:22:28 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
J.CtrlChars .DA BS 8
|
|
|
|
|
.DA LF 10
|
|
|
|
|
.DA HOME 12
|
|
|
|
|
.DA CROUT 13
|
|
|
|
|
.DA ESC 27
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
J.EscCodes .DA Scroll.Dn D
|
|
|
|
|
.DA Scroll.Up M
|
|
|
|
|
.DA RESET c
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
J.EscSequences .DA Esc.DispAttr m
|
|
|
|
|
.DA Esc.Query n
|
2015-11-29 22:19:10 +00:00
|
|
|
|
.DA Esc.Scroll r
|
2016-01-04 07:22:28 +00:00
|
|
|
|
.DA Esc.Erase K
|
2015-11-29 22:19:10 +00:00
|
|
|
|
.DA Esc.Home H
|
|
|
|
|
.DA 0 end of relocation
|
2015-03-14 21:48:35 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
OPEN stz CURON
|
2016-01-04 07:22:28 +00:00
|
|
|
|
|
2015-11-29 22:19:10 +00:00
|
|
|
|
stz bEscMode
|
|
|
|
|
stz bEscModeCSI
|
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
stz OutPtr
|
|
|
|
|
stz OutCnt
|
|
|
|
|
|
2015-11-29 22:19:10 +00:00
|
|
|
|
jsr RESET
|
2015-03-14 21:48:35 +00:00
|
|
|
|
jsr HOME
|
2015-11-22 22:30:06 +00:00
|
|
|
|
|
|
|
|
|
lda #A2osX.SCREENS.C
|
|
|
|
|
>SYSCALL SYS.ScreenSelectA
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
|
|
|
|
clc
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
2015-06-03 18:30:57 +00:00
|
|
|
|
GETEVENT lda A2osX.TIMER16
|
2015-03-14 21:48:35 +00:00
|
|
|
|
and #CURSOR.BLINK.SPEED
|
|
|
|
|
eor CURON
|
2015-10-19 20:35:00 +00:00
|
|
|
|
beq .1
|
2015-03-14 21:48:35 +00:00
|
|
|
|
jsr CURBLNK
|
2015-10-19 20:35:00 +00:00
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
.1 jsr Char.Out.Get
|
|
|
|
|
bcc .7
|
|
|
|
|
|
|
|
|
|
lda A2osX.ASCREEN
|
2015-10-19 20:35:00 +00:00
|
|
|
|
and #A2osX.SCREENS.C is screen active?
|
|
|
|
|
beq .9
|
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
>SYSCALL SYS.GetKeyboardEvent
|
2015-10-19 20:35:00 +00:00
|
|
|
|
bcs .9
|
2015-12-12 10:13:14 +00:00
|
|
|
|
|
|
|
|
|
ldy #S.EVT.DATAHI
|
|
|
|
|
lda (pEvent),y
|
|
|
|
|
bne .8
|
|
|
|
|
dey
|
|
|
|
|
lda (pEvent),y
|
|
|
|
|
|
|
|
|
|
ldx KeyRemapped
|
|
|
|
|
.2 cmp KeyRemapped,x
|
|
|
|
|
beq .3
|
|
|
|
|
dex
|
|
|
|
|
bne .2
|
|
|
|
|
clc
|
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
.3 lda KeyRemappedIdx,x
|
2016-01-04 07:22:28 +00:00
|
|
|
|
tay
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
.4 lda KeyRemappedTbl,y
|
|
|
|
|
beq .6
|
|
|
|
|
jsr Char.Out
|
|
|
|
|
iny
|
|
|
|
|
bra .4
|
|
|
|
|
|
|
|
|
|
.6 jsr Char.Out.Get
|
|
|
|
|
|
|
|
|
|
.7 ldy #S.EVT.DATALO
|
2015-12-12 10:13:14 +00:00
|
|
|
|
sta (pEvent),y
|
|
|
|
|
iny
|
|
|
|
|
lda #0
|
|
|
|
|
sta (pEvent),y
|
|
|
|
|
lda #S.EVT.F.KEY
|
2016-01-04 07:22:28 +00:00
|
|
|
|
sta (pEvent)
|
|
|
|
|
|
|
|
|
|
.8 clc
|
|
|
|
|
rts
|
2015-12-12 10:13:14 +00:00
|
|
|
|
|
2015-03-14 21:48:35 +00:00
|
|
|
|
.9 lda #0 Error = no event
|
|
|
|
|
sec
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
2015-11-29 22:19:10 +00:00
|
|
|
|
COUT bit bEscMode
|
2016-01-04 07:22:28 +00:00
|
|
|
|
bmi COUT.EscMode
|
2015-11-29 22:19:10 +00:00
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
pha
|
2015-08-05 20:38:05 +00:00
|
|
|
|
jsr CUROFF
|
|
|
|
|
pla
|
|
|
|
|
cmp #32
|
2016-01-04 07:22:28 +00:00
|
|
|
|
bcc COUT.Ctrl
|
2015-11-29 22:19:10 +00:00
|
|
|
|
|
|
|
|
|
ora INVFLG
|
|
|
|
|
ldx CH
|
|
|
|
|
ldy CV
|
|
|
|
|
jsr SetCharAtXY
|
2016-01-04 07:22:28 +00:00
|
|
|
|
jmp FSOUT
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
COUT.Ctrl ldy #0
|
|
|
|
|
ldx #0
|
|
|
|
|
|
|
|
|
|
.2 iny
|
|
|
|
|
cmp CtrlChars,y
|
|
|
|
|
beq .3
|
|
|
|
|
inx
|
|
|
|
|
inx
|
|
|
|
|
cpy CtrlChars
|
2015-03-14 21:48:35 +00:00
|
|
|
|
bne .2
|
2016-01-04 07:22:28 +00:00
|
|
|
|
clc
|
|
|
|
|
rts
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
.3 jmp (J.CtrlChars,x)
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
COUT.EscMode bit bEscModeCSI
|
|
|
|
|
bmi COUT.EscModeCSI
|
|
|
|
|
cmp #'['
|
|
|
|
|
bne .1
|
|
|
|
|
|
|
|
|
|
dec bEscModeCSI
|
|
|
|
|
stz EscSeq
|
2015-11-29 22:19:10 +00:00
|
|
|
|
clc
|
2015-03-14 21:48:35 +00:00
|
|
|
|
rts
|
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
.1 stz bEscMode
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
ldy #0
|
|
|
|
|
ldx #0
|
|
|
|
|
|
|
|
|
|
.2 iny
|
|
|
|
|
cmp EscCodes,y
|
|
|
|
|
beq .3
|
|
|
|
|
inx
|
|
|
|
|
inx
|
|
|
|
|
cpy EscCodes
|
|
|
|
|
bne .2
|
|
|
|
|
clc
|
|
|
|
|
rts
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
.3 jmp (J.EscCodes,x)
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
COUT.EscModeCSI inc EscSeq
|
|
|
|
|
ldx EscSeq
|
|
|
|
|
sta EscSeq,x
|
|
|
|
|
cmp #64 End of Seq ?
|
|
|
|
|
bcs COUT.ExecEscSeq
|
|
|
|
|
cpx #ESCSEQ.MAXLEN too long?
|
|
|
|
|
bne .1
|
|
|
|
|
stz bEscModeCSI
|
|
|
|
|
stz bEscMode
|
|
|
|
|
.1 clc
|
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
COUT.ExecEscSeq stz EscSeqParamCnt
|
|
|
|
|
stz bEscSeqInNum
|
2015-08-05 20:38:05 +00:00
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
ldx #0 EscSeq Ptr
|
|
|
|
|
|
|
|
|
|
.10 stz EscSeqParamTmp
|
|
|
|
|
stz EscSeqParamTmp+1
|
2015-08-05 20:38:05 +00:00
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
.1 inx
|
|
|
|
|
lda EscSeq,x
|
|
|
|
|
jsr IsDigit
|
|
|
|
|
bcs .2
|
|
|
|
|
|
|
|
|
|
dec bEscSeqInNum
|
|
|
|
|
and #$0F
|
|
|
|
|
pha
|
|
|
|
|
lda EscSeqParamTmp
|
|
|
|
|
ldy EscSeqParamTmp+1
|
|
|
|
|
asl EscSeqParamTmp param=param*10
|
|
|
|
|
rol EscSeqParamTmp+1
|
|
|
|
|
asl EscSeqParamTmp
|
|
|
|
|
rol EscSeqParamTmp+1
|
|
|
|
|
clc
|
|
|
|
|
adc EscSeqParamTmp
|
|
|
|
|
sta EscSeqParamTmp
|
|
|
|
|
tya
|
|
|
|
|
adc EscSeqParamTmp+1
|
|
|
|
|
sta EscSeqParamTmp+1
|
|
|
|
|
asl EscSeqParamTmp
|
|
|
|
|
rol EscSeqParamTmp+1
|
|
|
|
|
|
|
|
|
|
pla
|
|
|
|
|
clc
|
|
|
|
|
adc EscSeqParamTmp
|
|
|
|
|
sta EscSeqParamTmp
|
|
|
|
|
bcc .1
|
|
|
|
|
inc EscSeqParamTmp+1
|
|
|
|
|
bra .1
|
|
|
|
|
|
|
|
|
|
.2 bit bEscSeqInNum
|
|
|
|
|
bpl .3
|
|
|
|
|
|
|
|
|
|
stz bEscSeqInNum
|
|
|
|
|
lda #255
|
|
|
|
|
ldy EscSeqParamTmp+1
|
|
|
|
|
bne .21
|
|
|
|
|
|
|
|
|
|
lda EscSeqParamTmp
|
|
|
|
|
.21 ldy EscSeqParamCnt
|
|
|
|
|
sta EscSeqParam,y
|
|
|
|
|
inc EscSeqParamCnt
|
|
|
|
|
|
|
|
|
|
.3 lda EscSeq,x
|
|
|
|
|
cmp #';'
|
|
|
|
|
beq .10
|
|
|
|
|
|
|
|
|
|
stz bEscModeCSI
|
|
|
|
|
stz bEscMode
|
|
|
|
|
|
|
|
|
|
ldy #0
|
|
|
|
|
ldx #0
|
|
|
|
|
|
|
|
|
|
.4 iny
|
|
|
|
|
cmp EscSeqCmds,y
|
|
|
|
|
beq .5
|
|
|
|
|
inx
|
|
|
|
|
inx
|
|
|
|
|
cpy EscSeqCmds
|
|
|
|
|
bne .4
|
2015-11-29 22:19:10 +00:00
|
|
|
|
clc
|
2015-08-05 20:38:05 +00:00
|
|
|
|
rts
|
2016-01-04 07:22:28 +00:00
|
|
|
|
|
|
|
|
|
.5 jmp (J.EscSequences,x)
|
2015-11-29 22:19:10 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
CLOSE
|
|
|
|
|
* lda A2osX.SCREENS
|
|
|
|
|
* and #$FF^A2osX.SCREENS.C
|
|
|
|
|
* sta A2osX.SCREENS
|
|
|
|
|
clc
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
GETINFO >LDYA L.DEVINFO
|
|
|
|
|
IRQ clc
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
* PRIVATE
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
RESET lda #0
|
|
|
|
|
sta SCROLLTOP
|
|
|
|
|
lda #23
|
|
|
|
|
sta SCROLLBOT
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
RESETATTR lda #$80
|
|
|
|
|
sta INVFLG
|
|
|
|
|
clc
|
2016-01-04 07:22:28 +00:00
|
|
|
|
rts
|
2015-03-14 21:48:35 +00:00
|
|
|
|
*--------------------------------------
|
2016-01-04 07:22:28 +00:00
|
|
|
|
ESC lda #$80
|
|
|
|
|
sta bEscMode
|
2015-12-10 18:53:30 +00:00
|
|
|
|
clc
|
|
|
|
|
rts
|
2015-06-03 18:30:57 +00:00
|
|
|
|
*--------------------------------------
|
2016-01-04 07:22:28 +00:00
|
|
|
|
BS ldx CH
|
|
|
|
|
beq .1
|
|
|
|
|
dec CH
|
|
|
|
|
bra .3
|
|
|
|
|
|
|
|
|
|
.1 ldy CV
|
|
|
|
|
bne .2
|
2015-11-29 22:19:10 +00:00
|
|
|
|
clc
|
2015-03-14 21:48:35 +00:00
|
|
|
|
rts
|
2016-01-04 07:22:28 +00:00
|
|
|
|
|
|
|
|
|
.2 lda #79
|
|
|
|
|
sta CH
|
|
|
|
|
dec CV
|
|
|
|
|
|
|
|
|
|
.3 lda #$20
|
|
|
|
|
ora INVFLG
|
|
|
|
|
ldx CH
|
|
|
|
|
ldy CV
|
|
|
|
|
jmp SetCharAtXY
|
2015-06-03 18:30:57 +00:00
|
|
|
|
*--------------------------------------
|
2015-11-29 22:19:10 +00:00
|
|
|
|
HOME stz CH
|
|
|
|
|
stz CV
|
|
|
|
|
|
|
|
|
|
ldx #23
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
|
|
|
|
.1 lda BASEL,x
|
2015-11-29 22:19:10 +00:00
|
|
|
|
sta ZPBaseL1
|
2015-03-14 21:48:35 +00:00
|
|
|
|
lda BASEH,x
|
2015-11-29 22:19:10 +00:00
|
|
|
|
sta ZPBaseL1+1
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
2015-11-29 22:19:10 +00:00
|
|
|
|
lda #' '
|
|
|
|
|
ora INVFLG
|
|
|
|
|
|
2015-11-23 14:54:30 +00:00
|
|
|
|
sta SETWRITEAUX
|
|
|
|
|
sta SETREADAUX
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
2015-11-29 22:19:10 +00:00
|
|
|
|
ldy #39
|
|
|
|
|
.2 sta (ZPBaseL1),y
|
2015-03-14 21:48:35 +00:00
|
|
|
|
dey
|
|
|
|
|
bpl .2
|
2015-11-29 22:19:10 +00:00
|
|
|
|
|
2015-11-23 14:54:30 +00:00
|
|
|
|
sta CLRWRITEAUX
|
|
|
|
|
sta CLRREADAUX
|
2015-11-29 22:19:10 +00:00
|
|
|
|
|
|
|
|
|
ldy #39
|
|
|
|
|
.3 sta (ZPBaseL1),y
|
2015-03-14 21:48:35 +00:00
|
|
|
|
dey
|
|
|
|
|
bpl .3
|
|
|
|
|
|
2015-11-29 22:19:10 +00:00
|
|
|
|
dex
|
|
|
|
|
bpl .1
|
|
|
|
|
|
|
|
|
|
clc
|
2015-03-14 21:48:35 +00:00
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
2016-01-04 07:22:28 +00:00
|
|
|
|
FSOUT ldx CH
|
|
|
|
|
cpx #79
|
|
|
|
|
beq CROUT1
|
|
|
|
|
inc CH
|
|
|
|
|
clc
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
CROUT jsr CLREOL
|
|
|
|
|
stz CH
|
|
|
|
|
clc
|
|
|
|
|
rts
|
|
|
|
|
CROUT1 stz CH
|
|
|
|
|
LF ldy CV
|
|
|
|
|
cpy #23
|
|
|
|
|
beq SCROLL.UP
|
|
|
|
|
inc CV
|
|
|
|
|
clc
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
2015-11-29 22:19:10 +00:00
|
|
|
|
SCROLL.UP ldx SCROLLTOP
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
|
|
|
|
.1 lda BASEL,x
|
2015-11-29 22:19:10 +00:00
|
|
|
|
sta ZPBaseL1
|
|
|
|
|
lda BASEH,x
|
|
|
|
|
sta ZPBaseL1+1
|
|
|
|
|
inx
|
|
|
|
|
lda BASEL,x
|
|
|
|
|
sta ZPBaseL2
|
2015-03-14 21:48:35 +00:00
|
|
|
|
lda BASEH,x
|
2015-11-29 22:19:10 +00:00
|
|
|
|
sta ZPBaseL2+1
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
2015-11-29 22:19:10 +00:00
|
|
|
|
ldy #39
|
2015-11-23 14:54:30 +00:00
|
|
|
|
sta SETWRITEAUX
|
|
|
|
|
sta SETREADAUX
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
2015-11-29 22:19:10 +00:00
|
|
|
|
.2 lda (ZPBaseL2),y
|
|
|
|
|
sta (ZPBaseL1),y
|
2015-03-14 21:48:35 +00:00
|
|
|
|
dey
|
|
|
|
|
bpl .2
|
2015-11-23 14:54:30 +00:00
|
|
|
|
|
2015-03-14 21:48:35 +00:00
|
|
|
|
ldy #39
|
2015-11-29 22:19:10 +00:00
|
|
|
|
sta CLRWRITEAUX
|
|
|
|
|
sta CLRREADAUX
|
|
|
|
|
|
|
|
|
|
.3 lda (ZPBaseL2),y
|
|
|
|
|
sta (ZPBaseL1),y
|
2015-03-14 21:48:35 +00:00
|
|
|
|
dey
|
|
|
|
|
bpl .3
|
|
|
|
|
|
2015-11-29 22:19:10 +00:00
|
|
|
|
cpx SCROLLBOT
|
|
|
|
|
bne .1
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
CLREOL ldx CH
|
|
|
|
|
ldy #80
|
|
|
|
|
bra CLR
|
|
|
|
|
|
|
|
|
|
CLRLINE ldx #0
|
|
|
|
|
ldy #80
|
|
|
|
|
bra CLR
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
2015-11-29 22:19:10 +00:00
|
|
|
|
CLRSOL ldx #0
|
|
|
|
|
ldy CH
|
|
|
|
|
|
|
|
|
|
CLR sty ZPTmpByte
|
|
|
|
|
.1 phx
|
|
|
|
|
lda #$20
|
|
|
|
|
ora INVFLG
|
|
|
|
|
ldy CV
|
|
|
|
|
jsr SetCharAtXY
|
|
|
|
|
plx
|
|
|
|
|
inx
|
|
|
|
|
cpx ZPTmpByte
|
|
|
|
|
bne .1
|
|
|
|
|
clc
|
2015-11-23 14:54:30 +00:00
|
|
|
|
rts
|
2015-03-14 21:48:35 +00:00
|
|
|
|
*--------------------------------------
|
2016-01-04 07:22:28 +00:00
|
|
|
|
SCROLL.DN ldx SCROLLBOT
|
|
|
|
|
|
|
|
|
|
.1 lda BASEL,x
|
|
|
|
|
sta ZPBaseL1
|
|
|
|
|
lda BASEH,x
|
|
|
|
|
sta ZPBaseL1+1
|
|
|
|
|
dex
|
|
|
|
|
lda BASEL,x
|
|
|
|
|
sta ZPBaseL2
|
|
|
|
|
lda BASEH,x
|
|
|
|
|
sta ZPBaseL2+1
|
|
|
|
|
|
|
|
|
|
ldy #39
|
|
|
|
|
sta SETWRITEAUX
|
|
|
|
|
sta SETREADAUX
|
|
|
|
|
|
|
|
|
|
.2 lda (ZPBaseL2),y
|
|
|
|
|
sta (ZPBaseL1),y
|
|
|
|
|
dey
|
|
|
|
|
bpl .2
|
|
|
|
|
|
|
|
|
|
ldy #39
|
|
|
|
|
sta CLRWRITEAUX
|
|
|
|
|
sta CLRREADAUX
|
|
|
|
|
|
|
|
|
|
.3 lda (ZPBaseL2),y
|
|
|
|
|
sta (ZPBaseL1),y
|
|
|
|
|
dey
|
|
|
|
|
bpl .3
|
|
|
|
|
|
|
|
|
|
cpx SCROLLTOP
|
|
|
|
|
bne .1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
clc
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
Esc.DispAttr ldx EscSeqParamCnt
|
|
|
|
|
beq .8
|
|
|
|
|
|
|
|
|
|
.1 lda EscSeqParam-1,x
|
|
|
|
|
bne .2
|
|
|
|
|
jsr RESETATTR
|
|
|
|
|
bra .7
|
|
|
|
|
|
|
|
|
|
.2 cmp #7
|
|
|
|
|
bne .8
|
|
|
|
|
stz INVFLG
|
|
|
|
|
|
|
|
|
|
.7 dex
|
|
|
|
|
bne .1
|
|
|
|
|
|
|
|
|
|
.8 clc
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
Esc.Query ldx EscSeqParamCnt
|
|
|
|
|
beq .8
|
|
|
|
|
dex
|
|
|
|
|
bne .8
|
|
|
|
|
|
|
|
|
|
lda EscSeqParam
|
|
|
|
|
cmp #6
|
|
|
|
|
bne .8
|
|
|
|
|
|
|
|
|
|
lda #$1B
|
|
|
|
|
jsr Char.Out
|
|
|
|
|
lda #$5B
|
|
|
|
|
jsr Char.Out
|
|
|
|
|
lda CV
|
|
|
|
|
inc
|
|
|
|
|
jsr Decimal.Out
|
|
|
|
|
lda #';'
|
|
|
|
|
jsr Char.Out
|
|
|
|
|
lda CH
|
|
|
|
|
inc
|
|
|
|
|
jsr Decimal.Out
|
|
|
|
|
lda #'R'
|
|
|
|
|
jsr Char.Out
|
|
|
|
|
|
|
|
|
|
.8 clc
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
Esc.Scroll ldx EscSeqParamCnt
|
|
|
|
|
bne .1
|
|
|
|
|
|
|
|
|
|
lda #0
|
|
|
|
|
ldy #23
|
|
|
|
|
bra .8
|
|
|
|
|
|
|
|
|
|
.1 cpx #2
|
|
|
|
|
bne .9
|
|
|
|
|
|
|
|
|
|
lda EscSeqParam
|
|
|
|
|
dec
|
|
|
|
|
ldy EscSeqParam+1
|
|
|
|
|
dey
|
|
|
|
|
|
|
|
|
|
.8 sta SCROLLTOP
|
|
|
|
|
sty SCROLLBOT
|
|
|
|
|
.9 clc
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
Esc.Erase ldx EscSeqParamCnt
|
|
|
|
|
|
|
|
|
|
bne .1
|
|
|
|
|
jmp CLREOL
|
|
|
|
|
|
|
|
|
|
.1 lda EscSeqParam
|
|
|
|
|
cmp #1
|
|
|
|
|
bne .2
|
|
|
|
|
jmp CLRSOL
|
|
|
|
|
|
|
|
|
|
.2 cmp #2
|
|
|
|
|
bne .9
|
|
|
|
|
jmp CLRLINE
|
|
|
|
|
|
|
|
|
|
.9 clc
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
Esc.Home ldx EscSeqParamCnt
|
|
|
|
|
bne .1
|
|
|
|
|
stz CH
|
|
|
|
|
stz CV
|
|
|
|
|
clc
|
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
.1 ldx #1
|
|
|
|
|
lda EscSeqParam
|
|
|
|
|
beq .2
|
|
|
|
|
|
|
|
|
|
ldx #24
|
|
|
|
|
cmp #24
|
|
|
|
|
bcs .2
|
|
|
|
|
|
|
|
|
|
tax
|
|
|
|
|
|
|
|
|
|
.2 dex
|
|
|
|
|
stx CV
|
|
|
|
|
|
|
|
|
|
dec EscSeqParamCnt
|
|
|
|
|
beq .8
|
|
|
|
|
|
|
|
|
|
ldx #1
|
|
|
|
|
lda EscSeqParam+1
|
|
|
|
|
beq .3
|
|
|
|
|
|
|
|
|
|
ldx #80
|
|
|
|
|
cmp #80
|
|
|
|
|
|
|
|
|
|
bcs .3
|
|
|
|
|
|
|
|
|
|
tax
|
|
|
|
|
|
|
|
|
|
.3 dex
|
|
|
|
|
stx CH
|
|
|
|
|
|
|
|
|
|
.8 clc
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
2015-03-14 21:48:35 +00:00
|
|
|
|
CUROFF lda CURON
|
|
|
|
|
beq CUREXIT.RTS
|
|
|
|
|
|
2015-06-03 18:30:57 +00:00
|
|
|
|
CURBLNK lda A2osX.ASCREEN
|
2015-03-14 21:48:35 +00:00
|
|
|
|
and #A2osX.SCREENS.C
|
|
|
|
|
bne CURBLNK1
|
|
|
|
|
|
|
|
|
|
lda CURON
|
|
|
|
|
bne CURBLNK.OFF
|
|
|
|
|
rts do not Light if screen is not active
|
|
|
|
|
|
|
|
|
|
CURBLNK1 lda CURON
|
|
|
|
|
bne CURBLNK.OFF
|
|
|
|
|
ldx CH
|
|
|
|
|
ldy CV
|
|
|
|
|
jsr GetCharAtXY
|
|
|
|
|
sta CURCHAR
|
2015-11-29 22:19:10 +00:00
|
|
|
|
and #$80
|
2015-03-14 21:48:35 +00:00
|
|
|
|
ldx CH
|
|
|
|
|
ldy CV
|
2015-11-29 22:19:10 +00:00
|
|
|
|
eor #" "
|
2015-03-14 21:48:35 +00:00
|
|
|
|
jsr SetCharAtXY
|
|
|
|
|
bra CUREXIT
|
|
|
|
|
|
|
|
|
|
CURBLNK.OFF ldx CH
|
|
|
|
|
ldy CV
|
|
|
|
|
lda CURCHAR
|
|
|
|
|
jsr SetCharAtXY
|
|
|
|
|
|
|
|
|
|
CUREXIT lda CURON
|
|
|
|
|
eor #CURSOR.BLINK.SPEED
|
|
|
|
|
sta CURON
|
|
|
|
|
CUREXIT.RTS rts
|
|
|
|
|
*--------------------------------------
|
2015-11-29 22:19:10 +00:00
|
|
|
|
SetCharAtXY cmp #$40
|
|
|
|
|
bcc .10
|
|
|
|
|
cmp #$5F
|
|
|
|
|
bcs .10
|
|
|
|
|
and #$3F
|
|
|
|
|
|
|
|
|
|
.10 pha
|
2015-03-14 21:48:35 +00:00
|
|
|
|
txa
|
|
|
|
|
lsr
|
|
|
|
|
|
2015-11-23 14:54:30 +00:00
|
|
|
|
bcs .1
|
|
|
|
|
sta SETWRITEAUX
|
|
|
|
|
|
|
|
|
|
.1 clc
|
|
|
|
|
adc BASEL,y
|
2015-11-29 22:19:10 +00:00
|
|
|
|
sta ZPBaseL1
|
2015-03-14 21:48:35 +00:00
|
|
|
|
lda BASEH,y
|
2015-11-29 22:19:10 +00:00
|
|
|
|
sta ZPBaseL1+1
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
|
|
|
|
pla
|
2015-11-29 22:19:10 +00:00
|
|
|
|
sta (ZPBaseL1)
|
2015-11-23 14:54:30 +00:00
|
|
|
|
sta CLRWRITEAUX
|
|
|
|
|
rts
|
2015-03-14 21:48:35 +00:00
|
|
|
|
*--------------------------------------
|
2015-11-23 14:54:30 +00:00
|
|
|
|
GetCharAtXY txa
|
2015-03-14 21:48:35 +00:00
|
|
|
|
lsr
|
|
|
|
|
|
2015-11-23 14:54:30 +00:00
|
|
|
|
bcs .1
|
|
|
|
|
sta SETREADAUX
|
|
|
|
|
|
|
|
|
|
.1 clc
|
|
|
|
|
adc BASEL,y
|
2015-11-29 22:19:10 +00:00
|
|
|
|
sta ZPBaseL1
|
2015-03-14 21:48:35 +00:00
|
|
|
|
lda BASEH,y
|
2015-11-29 22:19:10 +00:00
|
|
|
|
sta ZPBaseL1+1
|
2015-03-14 21:48:35 +00:00
|
|
|
|
|
2015-11-29 22:19:10 +00:00
|
|
|
|
lda (ZPBaseL1)
|
2015-11-23 14:54:30 +00:00
|
|
|
|
sta CLRREADAUX
|
|
|
|
|
rts
|
2015-03-14 21:48:35 +00:00
|
|
|
|
*--------------------------------------
|
2015-11-29 22:19:10 +00:00
|
|
|
|
IsDigit cmp #'0'
|
|
|
|
|
bcc .9
|
|
|
|
|
cmp #'9'+1
|
|
|
|
|
rts cc if ok, cs if not
|
|
|
|
|
.9 sec
|
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
2016-01-04 07:22:28 +00:00
|
|
|
|
Decimal.Out stz DecimalBuffer
|
|
|
|
|
stz DecimalBuffer+1
|
2015-11-29 22:19:10 +00:00
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
ldx #8
|
|
|
|
|
sed
|
2015-11-29 22:19:10 +00:00
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
tay
|
2015-11-29 22:19:10 +00:00
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
.1 tya
|
|
|
|
|
asl
|
|
|
|
|
tay
|
|
|
|
|
lda DecimalBuffer
|
|
|
|
|
adc DecimalBuffer
|
|
|
|
|
sta DecimalBuffer
|
|
|
|
|
lda DecimalBuffer+1
|
|
|
|
|
adc DecimalBuffer+1
|
|
|
|
|
sta DecimalBuffer+1
|
|
|
|
|
dex
|
2015-11-29 22:19:10 +00:00
|
|
|
|
bne .1
|
2016-01-04 07:22:28 +00:00
|
|
|
|
cld
|
2015-11-29 22:19:10 +00:00
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
stz bDecimal0Out
|
|
|
|
|
lda DecimalBuffer+1
|
|
|
|
|
and #$0f
|
|
|
|
|
beq .2
|
|
|
|
|
ora #$30
|
|
|
|
|
dec bDecimal0Out
|
|
|
|
|
jsr Char.Out
|
2015-11-29 22:19:10 +00:00
|
|
|
|
|
2016-01-04 07:22:28 +00:00
|
|
|
|
.2 lda DecimalBuffer
|
|
|
|
|
lsr
|
|
|
|
|
lsr
|
|
|
|
|
lsr
|
|
|
|
|
lsr
|
|
|
|
|
bne .3
|
|
|
|
|
bit bDecimal0Out
|
|
|
|
|
bpl .4
|
|
|
|
|
.3 ora #$30
|
|
|
|
|
jsr Char.Out
|
|
|
|
|
.4 lda DecimalBuffer
|
|
|
|
|
and #$0f
|
|
|
|
|
ora #$30
|
|
|
|
|
*--------------------------------------
|
|
|
|
|
Char.Out pha
|
|
|
|
|
lda OutPtr
|
|
|
|
|
clc
|
|
|
|
|
adc OutCnt
|
|
|
|
|
and #$0f
|
|
|
|
|
tax
|
|
|
|
|
pla
|
|
|
|
|
sta OutBuffer,x
|
|
|
|
|
inc OutCnt
|
2015-11-29 22:19:10 +00:00
|
|
|
|
rts
|
|
|
|
|
*--------------------------------------
|
2016-01-04 07:22:28 +00:00
|
|
|
|
Char.Out.Get sec
|
|
|
|
|
lda OutCnt
|
|
|
|
|
beq .9
|
|
|
|
|
dec OutCnt
|
|
|
|
|
ldx OutPtr
|
|
|
|
|
lda OutBuffer,x
|
|
|
|
|
pha
|
|
|
|
|
txa
|
|
|
|
|
inc
|
|
|
|
|
and #$0f
|
|
|
|
|
sta OutPtr
|
|
|
|
|
pla
|
2015-11-29 22:19:10 +00:00
|
|
|
|
clc
|
2016-01-04 07:22:28 +00:00
|
|
|
|
.9 rts
|
2015-11-29 22:19:10 +00:00
|
|
|
|
*--------------------------------------
|
2015-06-03 18:30:57 +00:00
|
|
|
|
DRV.CS.END
|
2016-01-04 07:22:28 +00:00
|
|
|
|
EscCodes >PSTRING "DMc"
|
|
|
|
|
EscSeqCmds >PSTRING "mnrKH"
|
2015-06-03 18:30:57 +00:00
|
|
|
|
BASEL .HS 00.80.00.80.00.80.00.80.28.A8.28.A8.28.A8.28.A8.50.D0.50.D0.50.D0.50.D0
|
|
|
|
|
BASEH .HS 04.04.05.05.06.06.07.07.04.04.05.05.06.06.07.07.04.04.05.05.06.06.07.07
|
2015-03-14 21:48:35 +00:00
|
|
|
|
CH .BS 1
|
|
|
|
|
CV .BS 1
|
|
|
|
|
INVFLG .BS 1
|
2015-11-29 22:19:10 +00:00
|
|
|
|
SCROLLTOP .BS 1
|
|
|
|
|
SCROLLBOT .BS 1
|
2015-03-14 21:48:35 +00:00
|
|
|
|
CURON .BS 1
|
|
|
|
|
CURCHAR .BS 1
|
2016-01-04 07:22:28 +00:00
|
|
|
|
OutBuffer .BS 16
|
|
|
|
|
OutPtr .BS 1
|
|
|
|
|
OutCnt .BS 1
|
|
|
|
|
DecimalBuffer .BS 2
|
|
|
|
|
bDecimal0Out .BS 1
|
2015-12-12 10:13:14 +00:00
|
|
|
|
*--------------------------------------
|
2015-12-13 21:29:51 +00:00
|
|
|
|
KeyRemapped .HS 05080A0B0D15 L,D,U,CR,R
|
2015-12-12 10:13:14 +00:00
|
|
|
|
KeyRemappedIdx .HS 050004080C0F
|
2016-01-04 07:22:28 +00:00
|
|
|
|
KeyRemappedTbl .EQ *
|
2015-12-12 10:13:14 +00:00
|
|
|
|
KeyRemappedLEFT .HS 1B5B4400 esc[D
|
|
|
|
|
KeyRemappedDOWN .HS 1B5B4200 esc[B
|
|
|
|
|
KeyRemappedUP .HS 1B5B4100 esc[A
|
|
|
|
|
KeyRemappedCR .HS 0D0A00 crlf
|
|
|
|
|
KeyRemappedRGHT .HS 1B5B4300 esc[C
|
|
|
|
|
*--------------------------------------
|
2016-01-04 07:22:28 +00:00
|
|
|
|
CtrlChars .HS 05080A0C0D1B
|
2015-11-29 22:19:10 +00:00
|
|
|
|
bEscMode .BS 1
|
|
|
|
|
bEscModeCSI .BS 1
|
2016-01-04 07:22:28 +00:00
|
|
|
|
bEscSeqInNum .BS 1
|
2015-11-29 22:19:10 +00:00
|
|
|
|
EscSeq .BS ESCSEQ.MAXLEN+1
|
2016-01-04 07:22:28 +00:00
|
|
|
|
EscSeqParamTmp .BS 2
|
2015-11-29 22:19:10 +00:00
|
|
|
|
EscSeqParamCnt .BS 1
|
|
|
|
|
EscSeqParam .BS 4
|
2015-12-12 10:13:14 +00:00
|
|
|
|
*--------------------------------------
|
2015-06-03 18:30:57 +00:00
|
|
|
|
DEVINFO .DA #S.DEVINFO.TYPE.CHAR
|
2015-03-14 21:48:35 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
MAN
|
|
|
|
|
SAVE DRV/CONSOLE.DRV.S
|
|
|
|
|
ASM
|