A2osX/BIN/ATBROWSE.S.txt

165 lines
3.1 KiB
Plaintext
Raw Normal View History

NEW
2019-05-02 09:52:32 +00:00
AUTO 3,1
.LIST OFF
.OP 65C02
.OR $2000
2019-05-02 09:52:32 +00:00
.TF BIN/ATBROWSE
*--------------------------------------
2018-07-23 15:28:42 +00:00
.INB INC/MACROS.I
.INB INC/A2OSX.I
2018-10-02 15:52:30 +00:00
.INB INC/MLI.I
.INB INC/MLI.E.I
2018-07-23 15:28:42 +00:00
.INB INC/APPLETALK.I
*--------------------------------------
ZPPTR1 .EQ ZPBIN
ZPPTR2 .EQ ZPBIN+2
*--------------------------------------
* File Header (16 Bytes)
*--------------------------------------
CS.START cld
jmp (.1,x)
.DA #$61 6502,Level 1 (65c02)
.DA #1 BIN Layout Version 1
.DA 0
.DA CS.END-CS.START CS
.DA DS.END-DS.START DS
2019-10-21 19:40:50 +00:00
.DA #64 SS
.DA #4 ZP
.DA 0
*--------------------------------------
* Relocation Table
2019-10-03 06:25:27 +00:00
*--------------------------------------
.1 .DA CS.INIT
.DA CS.RUN
.DA CS.DOEVENT
.DA CS.QUIT
L.MSG.NOATK .DA MSG.NOATK
L.MSG.NETNODE .DA MSG.NETNODE
L.SEARCH.STRING .DA SEARCH.STRING
L.MSG.DUMP0 .DA MSG.DUMP0
L.MSG.DUMP .DA MSG.DUMP
.DA 0
*--------------------------------------
CS.INIT clc
rts
*--------------------------------------
CS.RUN >STZ.G P.GetInfo Sync
2019-10-21 19:40:50 +00:00
lda #ATGetInfo
>STA.G P.GetInfo+1
2019-10-21 19:40:50 +00:00
>LEA.G P.GetInfo
2019-10-22 06:23:40 +00:00
jsr A2osX.ATKCALL
2019-10-21 19:40:50 +00:00
bcc CS.RUN.ATKOK
pha
>LDYA L.MSG.NOATK
2020-02-28 07:21:46 +00:00
>SYSCALL PrintF
pla
sec
2019-10-21 19:40:50 +00:00
rts
CS.RUN.ATKOK >LDA.G P.GetInfo+$E NODE
>PUSHA
>PUSHW.G P.GetInfo+$8 NET
>LDYA L.MSG.NETNODE
2020-02-28 07:21:46 +00:00
>SYSCALL PrintF
>STZ.G P.LookupName Sync
lda #ATLookupName
>STA.G P.LookupName+1
>LDYA L.SEARCH.STRING
>STYA.G P.LookupName+$08 Entry Name Ptr
lda #4
>STA.G P.LookupName+$C RetInt
>STA.G P.LookupName+$D RetCnt
>LDYAI 1024
>STYA.G P.LookupName+$10 BufLen
2020-02-28 07:21:46 +00:00
>SYSCALL GetMem
bcs .99
2019-10-21 19:40:50 +00:00
>STYA.G P.LookupName+$12 BufPtr
>STYA ZPPTR1
txa
>STA.G hBuf
2019-10-21 19:40:50 +00:00
lda #16
>STA.G P.LookupName+$16 MaxMatch
2019-10-21 19:40:50 +00:00
>LEA.G P.LookupName
jsr A2osX.ATKCALL
2019-10-21 19:40:50 +00:00
.99 bcs .9
>LDA.G P.LookupName+$17
beq .8
2019-10-21 19:40:50 +00:00
>LDYA L.MSG.DUMP0
2020-02-28 07:21:46 +00:00
>SYSCALL PrintF
bcs .9
2019-10-21 19:40:50 +00:00
.1 lda ZPPTR1
clc
adc #5
sta ZPPTR2
lda ZPPTR1+1
adc #0
sta ZPPTR2+2
>PUSHW ZPPTR2
ldy #4
2019-10-21 19:40:50 +00:00
.2 >PUSHB (ZPPTR1),y
dey
bpl .2
2019-10-21 19:40:50 +00:00
>LDYA L.MSG.DUMP
2020-02-28 07:21:46 +00:00
>SYSCALL PrintF
bcs .9
2019-10-21 19:40:50 +00:00
lda ZPPTR2
sec
adc (ZPPTR2)
sta ZPPTR1
lda ZPPTR2+1
adc #0
sta ZPPTR1+1
>DEC.G P.LookupName+$17
bne .2
2019-10-21 19:40:50 +00:00
lda #0
2019-10-21 19:40:50 +00:00
.8 sec
.9 rts
*--------------------------------------
CS.DOEVENT sec
rts
*--------------------------------------
CS.QUIT >LDA.G hBuf
beq .8
2018-07-18 15:30:42 +00:00
>SYSCALL FreeMem
.8 clc
rts
*--------------------------------------
CS.END
MSG.NOATK .AZ "AppleTalk Not Loaded.\r\n"
MSG.NETNODE .AZ "Network/Node:$%H/$%h\r\n"
SEARCH.STRING >PSTR "*:*@*"
MSG.DUMP0 .AZ "Net Nod SkT En# Name\r\n"
MSG.DUMP .AZ "%H $%h $%h $%h %S\r\n"
*--------------------------------------
.DUMMY
.OR 0
DS.START
P.GetInfo .BS $0F
P.LookupName .BS $17
hBuf .BS 1
DS.END
.ED
*--------------------------------------
MAN
2019-10-21 19:40:50 +00:00
SAVE USR/SRC/BIN/ATBROWSE.S
ASM