A2osX/SBIN/INSDRV.S.txt

85 lines
1.9 KiB
Plaintext
Raw Permalink Normal View History

NEW
2018-11-17 18:17:13 +01:00
PREFIX
2018-07-13 16:38:24 +02:00
AUTO 4,1
.LIST OFF
.OP 65C02
.OR $2000
2020-08-20 15:20:33 +02:00
.TF sbin/insdrv
*--------------------------------------
2020-08-20 15:20:33 +02: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 16:38:24 +02:00
.DA #$61 6502,Level 1 (65c02)
2018-06-29 16:16:40 +02: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
2019-10-03 08:25:27 +02:00
*--------------------------------------
.1 .DA CS.INIT
.DA CS.RUN
.DA CS.DOEVENT
.DA CS.QUIT
2018-10-18 17:32:57 +02:00
L.MSG.USAGE .DA MSG.USAGE
2016-08-17 08:25:58 +02:00
L.MSG.LOAD .DA MSG.LOAD
.DA 0
*--------------------------------------
2018-10-05 16:58:38 +02:00
CS.RUN ldy #S.PS.ARGC
2020-02-28 08:21:46 +01:00
lda (pPS),y
2018-11-23 17:20:19 +01:00
cmp #1
2018-10-26 16:46:11 +02:00
bcc .9
2020-01-31 21:26:51 +01:00
>PUSHW L.MSG.LOAD
lda #1 get PTR to ARG[1] (Driver name)
2018-10-16 17:48:03 +02:00
>SYSCALL ArgV
2016-08-17 08:25:58 +02:00
>PUSHYA
2018-08-22 17:23:27 +02:00
>PUSHBI 2
2020-02-28 08:21:46 +01:00
>SYSCALL PrintF
2020-01-31 21:26:51 +01:00
bcs .99
2016-08-17 08:25:58 +02:00
lda #1 get PTR to ARG[1] (Driver name)
2018-10-16 17:48:03 +02:00
>SYSCALL ArgV
2018-06-28 17:26:34 +02:00
>SYSCALL LoadDrv YA = PTR to ARG[1...n]
bcs .99
lda #0 success, but....
2016-08-17 08:25:58 +02:00
sec we do not want to stay in memory
rts
2018-10-18 17:32:57 +02:00
.9 >LDYA L.MSG.USAGE
2020-02-28 08:21:46 +01:00
>SYSCALL PutS
2018-10-21 22:54:07 +02:00
lda #E.SYN tell TSKMGR that all done ok, but
sec we do not want to stay in memory
2016-08-17 08:25:58 +02:00
.99 rts
*--------------------------------------
2018-10-05 16:58:38 +02:00
CS.INIT
*--------------------------------------
CS.QUIT clc
rts
*--------------------------------------
2018-10-05 16:58:38 +02:00
CS.DOEVENT sec
rts
*--------------------------------------
CS.END
2023-06-02 22:31:09 +02:00
MSG.USAGE .CZ "Usage: insdrv file.drv <args>"
MSG.LOAD .CZ "INSDRV:Loading %s...\r\n"
2016-08-17 08:25:58 +02:00
*--------------------------------------
MAN
2020-08-20 15:20:33 +02:00
SAVE usr/src/sbin/insdrv.s
ASM