A2osX/SBIN/INSDRV.S.txt

80 lines
1.8 KiB
Plaintext
Raw Normal View History

NEW
2018-07-13 14:38:24 +00:00
PREFIX /A2OSX.BUILD
AUTO 4,1
.LIST OFF
.OP 65C02
.OR $2000
2018-07-19 15:33:55 +00:00
.TF SBIN/INSDRV
*--------------------------------------
2018-07-19 15:33:55 +00:00
.INB INC/MACROS.I
.INB INC/A2OSX.I
*--------------------------------------
ZPPTR1 .EQ ZPBIN
ZPPTR2 .EQ ZPBIN+2
ZPPTR3 .EQ ZPBIN+4
*--------------------------------------
* File Header (16 Bytes)
*--------------------------------------
CS.START cld
jmp (.1,x)
2018-07-13 14:38:24 +00:00
.DA #$61 6502,Level 1 (65c02)
2018-06-29 14:16:40 +00:00
.DA #1
.DA 0
.DA CS.END-CS.START Code Length To Relocate
.DA 0 Data Segment to Allocate
.DA #64 SS
.DA #6 ZP
.DA 0
*--------------------------------------
* Relocation Table
*--------------------------------------
.1 .DA CS.INIT
.DA CS.RUN
.DA CS.DOEVENT
.DA CS.QUIT
L.MSG.HELP .DA MSG.HELP
2016-08-17 06:25:58 +00:00
L.MSG.LOAD .DA MSG.LOAD
.DA 0
*--------------------------------------
CS.INIT ldy #S.PS.ARGC
lda (pPs),y
beq .9
2016-08-17 06:25:58 +00:00
lda #1 get PTR to ARG[1] (Driver name)
2018-07-13 14:38:24 +00:00
>SYSCALL GetArg
2016-08-17 06:25:58 +00:00
>PUSHYA
2016-08-17 06:25:58 +00:00
>LDYA L.MSG.LOAD
2018-06-21 15:12:10 +00:00
>SYSCALL printf
2016-08-17 06:25:58 +00:00
lda #1 get PTR to ARG[1] (Driver name)
2018-07-13 14:38:24 +00:00
>SYSCALL GetArg
2018-06-28 15:26:34 +00:00
>SYSCALL LoadDrv YA = PTR to ARG[1...n]
bcs .99
lda #0 success, but....
2016-08-17 06:25:58 +00:00
sec we do not want to stay in memory
rts
.9 >LDYA L.MSG.HELP
2018-06-21 15:12:10 +00:00
>SYSCALL printf
lda #0 tell TSKMGR that all done ok, but
sec we do not want to stay in memory
2016-08-17 06:25:58 +00:00
.99 rts
*--------------------------------------
CS.RUN
CS.DOEVENT sec
rts
*--------------------------------------
CS.QUIT clc
rts
*--------------------------------------
CS.END
MSG.HELP .AZ "Usage: insdrv file.drv <args>\r\n"
MSG.LOAD .AZ "INSDRV:Loading %s...\r\n"
2016-08-17 06:25:58 +00:00
*--------------------------------------
MAN
SAVE /A2OSX.SRC/SBIN/INSDRV.S
ASM