mirror of
https://github.com/A2osX/A2osX.git
synced 2024-11-04 19:05:42 +00:00
e0d317e793
LIBTUI:wip GOPGHER:correct exit key WHICH:new command
64 lines
1.1 KiB
Plaintext
64 lines
1.1 KiB
Plaintext
NEW
|
||
AUTO 3,1
|
||
.LIST OFF
|
||
*--------------------------------------
|
||
* LABEL.New hParent,X1,Y1,pLabel 5
|
||
*--------------------------------------
|
||
LABEL.New lda #S.OBJ.T.LABEL
|
||
jsr OBJ.Create
|
||
bcs .9
|
||
|
||
ldy #S.OBJ.S
|
||
lda #S.OBJ.S.bDisabled
|
||
sta (ZPObjPtr),y
|
||
|
||
ldy #S.LABEL.pLabel
|
||
jsr OBJ.PullWordY
|
||
|
||
ldy #S.OBJ.H
|
||
lda #1
|
||
sta (ZPObjPtr),y
|
||
|
||
jsr OBJ.PullY1X1hParent
|
||
|
||
jsr CONT.Insert
|
||
bcs .99
|
||
|
||
lda hObj
|
||
* clc
|
||
rts
|
||
|
||
.9 >POP 5
|
||
.99 rts
|
||
*--------------------------------------
|
||
LABEL.Draw ldy #S.LABEL.pLabel
|
||
lda (ZPObjPtr),y
|
||
sta ZPPtr1
|
||
iny
|
||
lda (ZPObjPtr),y
|
||
sta ZPPtr1+1
|
||
|
||
ldy #0
|
||
|
||
.1 lda (ZPPtr1),y
|
||
beq .8
|
||
|
||
jsr LB.COut
|
||
iny
|
||
bne .1
|
||
|
||
.8
|
||
*--------------------------------------
|
||
LABEL.Run
|
||
*--------------------------------------
|
||
LABEL.Activate
|
||
*--------------------------------------
|
||
LABEL.Deactivate
|
||
clc
|
||
rts
|
||
*--------------------------------------
|
||
MAN
|
||
SAVE usr/src/lib/libtui.s.label
|
||
LOAD usr/src/lib/libtui.s
|
||
ASM
|