A2osX/SYS/KERNEL.S.BIN.txt

591 lines
12 KiB
Plaintext
Raw Normal View History

NEW
PREFIX /A2OSX.BUILD
AUTO 4,1
2015-03-14 21:48:35 +00:00
*--------------------------------------
2018-06-18 06:22:50 +00:00
* K.LoadLib
* in :
* Y,A = PTR To "LibName.o" C-String
* out :
* A = hMem To loaded LIB
*--------------------------------------
2018-06-21 15:12:10 +00:00
K.LoadLib jsr BIN.FindLIB
bcs .9
2018-06-22 06:24:35 +00:00
jsr BIN.Load Y,A = "/PATH/BIN"
bcs .9
stx .8+1
>STYA .1+1
txa Pass hLib to LibLoad
ldx #LIBMGR.LOAD
.1 jsr $ffff Self Modified, Call LIB.LOAD function
bcs .99
.8 lda #$ff hLib
clc
.9 rts
.99 pha
lda .8+1
2018-06-22 06:24:35 +00:00
jsr K.FreeMem
pla
sec
rts
*--------------------------------------
2018-06-18 06:22:50 +00:00
* K.UnloadLib
* in :
* A = hMem To Lib
* out :
*--------------------------------------
2018-06-18 06:22:50 +00:00
K.UnloadLib pha
2018-06-21 15:12:10 +00:00
jsr K.GetMemByID
>STYA ZPPtr1
ldy #S.MEM.REFCNT
lda (ZPPtr1),y Get count of those referencing this lib
dec only one left ?
beq .1
sta (ZPPtr1),y
pla
clc
rts
.1 ldy #S.MEM.PTR
lda (ZPPtr1),y
sta .2+1
iny
lda (ZPPtr1),y
sta .2+2
ldx #LIBMGR.UNLOAD
.2 jsr $ffff Self Modified, Call LIB.UNLOAD function
pla
2018-06-22 06:24:35 +00:00
jmp K.FreeMem
2018-06-21 15:12:10 +00:00
*/--------------------------------------
* # LoadDrv
* ##ASM
* **In:**
* Y,A = PTR to "NAME.DRV [PARAM]" C-String
* **Out:**
* none
*\--------------------------------------
2018-06-18 06:22:50 +00:00
K.LoadDrv >STYA .2+1 Save "BIN\0ARGS\0\0"
2018-06-21 15:12:10 +00:00
jsr BIN.FindDRV
bcs .9
2018-06-22 06:24:35 +00:00
jsr BIN.Load Y,A = "/PATH/BIN"
bcs .9
>STYA pDrv
stx .97+1
ldx #$ff
.1 inx Skip "BIN"
.2 lda $ffff,x
bne .1
txa
sec
adc .2+1
tay
lda #0
2018-06-28 15:26:34 +00:00
adc .2+2 Y,A = ARGS
jsr .88 call Dev.Detect
bcs .96
jsr .96 Cleanup...
lda #0 Make sure RC = 0 if success
clc
.9 rts
.96 pha
.97 lda #$ff
2018-06-22 06:24:35 +00:00
jsr K.FreeMem
pla
sec
rts
.88 jmp (pDrv)
*--------------------------------------
2018-06-18 06:22:50 +00:00
BIN.FindLIB clc
.HS B0 bcs
2018-06-18 06:22:50 +00:00
BIN.FindDRV sec
>STYA BIN.CmdLine
>LDYAI BIN.Find.ENV.LIB
bcc .1
>LDYAI BIN.Find.ENV.DRV
2018-06-18 06:22:50 +00:00
.1 jsr K.GetEnv get value for Search Path
bcs .9
2018-06-28 15:26:34 +00:00
>STYA K.FileSearch.SearchPath
>LDYA BIN.CmdLine
jsr K.FileSearch.YA find LIB/DRV in Search
bcs .9
>LDYAI K.Buf256
clc
.9 rts
*--------------------------------------
BIN.Find.ENV.DRV .AZ "DRV"
BIN.Find.ENV.LIB .AZ "LIB"
*--------------------------------------
2018-06-28 15:26:34 +00:00
* BIN.Load
2015-03-14 21:48:35 +00:00
* in :
* Y,A = /BIN/PATH (CSTR)
2015-03-14 21:48:35 +00:00
* out :
* Y,A = MEMPTR
* X = hMem of Code Segment
*--------------------------------------
2018-06-22 06:24:35 +00:00
BIN.Load >STYA BIN.CmdLine
>STYA .2+1
ldx Mem.LastSlot
2018-06-22 06:24:35 +00:00
beq BIN.Load.1
>LDYAI Mem.Table
>STYA ZPPtr1
ldx #0
.1 lda (ZPPtr1)
bpl .6 In Use?
ldy #S.MEM.BIN any BIN PATH in this slot?
lda (ZPPtr1),y
beq .6
2018-06-21 15:12:10 +00:00
jsr K.GetMemPtr get pathname
>STYA .3+1
ldy #0
.2 lda $ffff,y SELF MODIFIED
.3 cmp $ffff,y SELF MODIFIED
bne .6
iny
ora #0
bne .2
2015-03-14 21:48:35 +00:00
ldy #S.MEM.REFCNT
2017-01-12 17:43:45 +00:00
lda (ZPPtr1),y
2015-03-14 21:48:35 +00:00
inc
sta (ZPPtr1),y
txa
2018-06-21 15:12:10 +00:00
jmp K.GetMemPtr X=hMem from K.GetMemByNameA
.6 lda ZPPtr1
clc
adc #S.MEM
sta ZPPtr1
bcc .7
inc ZPPtr1+1
.7 inx
cpx Mem.LastSlot
bne .1
*--------------------------------------
2018-06-22 06:24:35 +00:00
BIN.Load.1 >PUSHWI K.S.STAT
>PUSHW BIN.CmdLine
>SYSCALL STAT BANK1!!! Look for AUXTYPE
bcs .9
2016-09-26 16:00:52 +00:00
>LDYA K.S.STAT+S.STAT.P.AUXTYPE
2018-06-29 14:16:40 +00:00
>STYA BIN.R.CS.Start
2016-09-26 16:00:52 +00:00
>PUSHYA Push AUXTYPE
2018-06-29 14:16:40 +00:00
>PUSHBI S.FI.T.BIN
2017-01-12 17:43:45 +00:00
>PUSHBI SYS.FOpen.R
>PUSHW BIN.CmdLine
>SYSCALL LoadFile BANK1!!!
.9 bcs .99 Error Loading file
stx BIN.hMem save hMem
pha YA=CODE+DATA size
tya
* clc CC from bcs .99
2018-06-29 14:16:40 +00:00
adc BIN.R.CS.Start Get AUXTYPE for actual Base Address
2017-10-27 14:56:46 +00:00
sta BIN.R.End compute Range End=AUXTYPE+FILELEN
pla
2018-06-29 14:16:40 +00:00
adc BIN.R.CS.Start+1
2017-10-27 14:56:46 +00:00
sta BIN.R.End+1
txa
2018-06-21 15:12:10 +00:00
jsr K.GetMemPtr
>STYA ZPPtr1 set ZPPtr1 -> Code start
2018-06-21 15:12:10 +00:00
pha YA = actual load address
tya
sec
2018-06-29 14:16:40 +00:00
sbc BIN.R.CS.Start
2018-06-21 15:12:10 +00:00
sta BIN.R.Offset Offset=ZPPtr1-AUXTYPE
pla
2018-06-29 14:16:40 +00:00
sbc BIN.R.CS.Start+1
2017-10-27 14:56:46 +00:00
sta BIN.R.Offset+1
2018-06-21 15:12:10 +00:00
ldy #H.BIN.CODE.LEN get Code Len
2017-01-12 17:43:45 +00:00
lda (ZPPtr1),y
clc
2017-01-12 17:43:45 +00:00
adc ZPPtr1
2018-06-21 15:12:10 +00:00
sta ZPPtr2 Make ZPPtr2 = ZPPtr1 + CodeLen
iny
2017-01-12 17:43:45 +00:00
lda (ZPPtr1),y
adc ZPPtr1+1
sta ZPPtr2+1
2017-10-27 14:56:46 +00:00
jsr BIN.RelExe
2015-06-03 18:30:57 +00:00
2018-06-21 15:12:10 +00:00
>LDYA BIN.CmdLine get back bin path
jsr K.NewStr make a copy of this string
2015-03-14 21:48:35 +00:00
bcs .98
2018-06-21 15:12:10 +00:00
lda BIN.hMem Keep X=hMem
jsr K.GetMemByID X unmodified
2017-01-12 17:43:45 +00:00
>STYA ZPPtr1
2015-06-03 18:30:57 +00:00
2017-01-12 17:43:45 +00:00
lda (ZPPtr1)
2015-03-14 21:48:35 +00:00
ora #S.MEM.F.CODE This is a code segment
2017-01-12 17:43:45 +00:00
sta (ZPPtr1)
2016-03-13 21:47:19 +00:00
txa Get Back hMem
2015-03-14 21:48:35 +00:00
ldy #S.MEM.BIN
2017-01-12 17:43:45 +00:00
sta (ZPPtr1),y
2015-06-03 18:30:57 +00:00
lda BIN.hMem
2015-06-03 18:30:57 +00:00
tax return hMEM to Caller...
2018-06-21 15:12:10 +00:00
jmp K.GetMemPtr ...and Y,A=PTR to CS
2015-03-14 21:48:35 +00:00
.98 pha
lda BIN.hMem
2018-06-21 15:12:10 +00:00
jsr K.FreeMem Discard Loaded Code
2015-03-14 21:48:35 +00:00
pla
2015-06-03 18:30:57 +00:00
sec
.99 rts
2015-03-14 21:48:35 +00:00
*--------------------------------------
BIN.CmdLine .BS 2
BIN.hMem .BS 1
2018-06-28 15:26:34 +00:00
*/--------------------------------------
* #K.InsDrv
* ##ASM
* **In:**
2018-06-29 14:16:40 +00:00
* PUSHW = DRV.END
* PUSHW = DRV.CS.END
* Y,A = DRV.CS.START
2018-06-28 15:26:34 +00:00
*\--------------------------------------
2018-06-29 14:16:40 +00:00
K.InsDrv >STYA BIN.R.CS.Start
>PULLW BIN.R.CS.End
>PULLW BIN.R.End
2017-10-27 14:56:46 +00:00
lda BIN.R.End Compute DRVLen=End-start
sec
2018-06-29 14:16:40 +00:00
sbc BIN.R.CS.Start
sta BIN.R.Len
2017-10-27 14:56:46 +00:00
lda BIN.R.End+1
2018-06-29 14:16:40 +00:00
sbc BIN.R.CS.Start+1
sta BIN.R.Len+1
2018-06-29 14:16:40 +00:00
lda DevMgr.Free Compute new DevMgr.Free
clc
2018-06-29 14:16:40 +00:00
adc BIN.R.Len
sta BIN.R.End
2018-06-21 15:12:10 +00:00
tay Save DRVEnd LO
lda DevMgr.Free+1
2018-06-29 14:16:40 +00:00
adc BIN.R.Len+1 A = DRVEnd HI
sta BIN.R.End+1
bcs .9 we crossed $FFFF, out of mem
cpy #DevMgr.HiMem
sbc /DevMgr.HiMem
bcs .9 No More Room to load Driver....
2017-01-12 17:43:45 +00:00
lda DevMgr.Count
cmp #K.DEV.MAX
bne .10 No Device Handle Left
lda #K.E.OOH
sec
rts
.9 lda #K.E.OOM
sec
rts
2018-06-29 14:16:40 +00:00
.10 lda DevMgr.Free Offset = Target DRV address-Src Address
sec
sbc BIN.R.CS.Start
sta BIN.R.Offset
lda DevMgr.Free+1
2018-06-29 14:16:40 +00:00
sbc BIN.R.CS.Start+1
sta BIN.R.Offset+1
jsr BIN.Move
jsr BIN.RelDrv
2018-06-29 14:16:40 +00:00
>LDYA BIN.R.End
>STYA DevMgr.Free
ldx DevMgr.Count
lda DevMgr.Free
2018-06-29 14:16:40 +00:00
sta Dev.Table
inx
lda DevMgr.Free+1
sta Dev.Table
2018-06-29 14:16:40 +00:00
inx
stx DevMgr.Count
clc
2018-06-29 14:16:40 +00:00
rts
*--------------------------------------
BIN.Move lda BIN.R.CS.Start
clc
2017-01-12 17:43:45 +00:00
sta ZPPtr1
2018-06-29 14:16:40 +00:00
adc BIN.R.Offset
sta BIN.R.CS.Start
sta ZPPtr2
lda BIN.R.CS.Start+1
sta ZPPtr1+1
adc BIN.R.Offset+1
sta BIN.R.CS.Start+1
sta ZPPtr2+1
2018-06-29 14:16:40 +00:00
lda BIN.R.Len+1
eor #$ff
pha
2018-06-29 14:16:40 +00:00
lda BIN.R.Len
eor #$ff
tax
ldy #0
2018-06-29 14:16:40 +00:00
.1 inx
bne .2
pla
inc
2018-06-29 14:16:40 +00:00
beq .3
pha
2018-06-29 14:16:40 +00:00
.2 lda (ZPPtr1),y
2017-01-12 17:43:45 +00:00
sta (ZPPtr2),y
iny
2018-06-29 14:16:40 +00:00
bne .1
2017-01-12 17:43:45 +00:00
inc ZPPtr1+1
inc ZPPtr2+1
2018-06-29 14:16:40 +00:00
bra .1
2018-06-29 14:16:40 +00:00
.3 lda BIN.R.CS.End
clc
adc BIN.R.Offset
sta BIN.R.CS.End
2017-01-12 17:43:45 +00:00
2018-06-29 14:16:40 +00:00
lda BIN.R.CS.End+1
adc BIN.R.Offset+1
sta BIN.R.CS.End+1
lda BIN.R.End
clc
2018-06-29 14:16:40 +00:00
adc BIN.R.Offset
sta BIN.R.End
lda BIN.R.End+1
adc BIN.R.Offset+1
sta BIN.R.End+1
rts
*--------------------------------------
2017-10-27 14:56:46 +00:00
* BIN.Rel___ :
*--------------------------------------
2018-06-29 14:16:40 +00:00
BIN.R.CS.Start .BS 2
BIN.R.CS.End .BS 2
2017-10-27 14:56:46 +00:00
BIN.R.End .BS 2
BIN.R.Offset .BS 2
*--------------------------------------
2018-06-29 14:16:40 +00:00
BIN.R.Len .BS 2
*--------------------------------------
2017-10-27 14:56:46 +00:00
BIN.RelExe ldy #H.BIN.T+1
2017-01-12 17:43:45 +00:00
lda (ZPPtr1),y
cmp /H.BIN.T.BIN65
beq .1
cmp /H.BIN.T.DRV65
beq .1
lda #K.E.IBIN
sec
rts
.1 ldy #H.BIN.JMP relocate Main JMP
2017-01-12 17:43:45 +00:00
lda (ZPPtr1),y
clc
2017-10-27 14:56:46 +00:00
adc BIN.R.Offset
2017-01-12 17:43:45 +00:00
sta (ZPPtr1),y
iny
2017-01-12 17:43:45 +00:00
lda (ZPPtr1),y
2017-10-27 14:56:46 +00:00
adc BIN.R.Offset+1
2017-01-12 17:43:45 +00:00
sta (ZPPtr1),y
ldy #H.BIN.EXE.REL.TABLE skip Header, CS.SIZE & DS.SIZE... (16 bytes)
.HS 2C bit abs
*--------------------------------------
2017-10-27 14:56:46 +00:00
BIN.RelDrv ldy #H.BIN.DRV.REL.TABLE
2017-01-12 17:43:45 +00:00
.1 lda (ZPPtr1),y Start Relocate JMP table
tax LO in X
iny
2017-01-12 17:43:45 +00:00
ora (ZPPtr1),y ORA with HI
beq .2 $0000 = end of table
dey
txa get back LO
clc
2017-10-27 14:56:46 +00:00
adc BIN.R.Offset
2017-01-12 17:43:45 +00:00
sta (ZPPtr1),y
iny
2017-01-12 17:43:45 +00:00
lda (ZPPtr1),y
2017-10-27 14:56:46 +00:00
adc BIN.R.Offset+1
2017-01-12 17:43:45 +00:00
sta (ZPPtr1),y
iny
bra .1
*--------------------------------------
.2 tya add current offset in Y to Ptr
sec + 1 to skip last 00 from beq .2
2017-01-12 17:43:45 +00:00
adc ZPPtr1
sta ZPPtr1
bcc .3
inc ZPPtr1+1 ZPPtr1=Current Code PTR
.3 lda (ZPPtr1) get OPCODE
lsr /2
tax
2018-06-29 14:16:40 +00:00
lda BIN.65816,x get OPCODE definition
bcs .4 go get LO nibble
lsr
lsr move HI -> LO
lsr
lsr
.4 and #$0f
bit #$8 abs addressing?
beq .6 no....
and #7 save Opcode length...
pha
ldy #1
2017-01-12 17:43:45 +00:00
lda (ZPPtr1),y Get LO
tax save LO in X
iny make Y point to HI
2018-06-29 14:16:40 +00:00
cpx BIN.R.CS.Start
2017-01-12 17:43:45 +00:00
lda (ZPPtr1),y Get HI
2018-06-29 14:16:40 +00:00
sbc BIN.R.CS.Start+1
bcc .5 addr < BIN.R.CS.Start, out of range
txa Get back LO
2017-10-27 14:56:46 +00:00
cpx BIN.R.End
2017-01-12 17:43:45 +00:00
lda (ZPPtr1),y Get HI
2017-10-27 14:56:46 +00:00
sbc BIN.R.End+1
bcs .5 addr > BIN.R.End, out of range
txa Get back LO
* clc CC from bcs .6
2017-10-27 14:56:46 +00:00
adc BIN.R.Offset add Offset to abs address
dey
2017-01-12 17:43:45 +00:00
sta (ZPPtr1),y store relocated addr LO
iny
2017-01-12 17:43:45 +00:00
lda (ZPPtr1),y Get HI
2017-10-27 14:56:46 +00:00
adc BIN.R.Offset+1
2017-01-12 17:43:45 +00:00
sta (ZPPtr1),y store relocated addr HI
.5 pla get back Opcode length...
.6 clc A = OPCODE length
2017-01-12 17:43:45 +00:00
adc ZPPtr1
sta ZPPtr1
bcc .7
2017-01-12 17:43:45 +00:00
inc ZPPtr1+1
2018-06-29 14:16:40 +00:00
.7 eor BIN.R.CS.End A = ZPPtr1
bne .3
2017-01-12 17:43:45 +00:00
lda ZPPtr1+1
2018-06-29 14:16:40 +00:00
eor BIN.R.CS.End+1
bne .3 next opcode....
.8 rts
*--------------------------------------
2018-06-29 14:16:40 +00:00
* 6502/65C02/65816 OPCODES
* Bit 3 : 1 = absolute addressing
* Bit 2-1-0 : opcode + @ length
*--------------------------------------
* 0.1.2.3.4.5.6.7.8.9.A.B.C.D.E.F
2018-06-29 14:16:40 +00:00
BIN.65816 .HS 1.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.B.B.B.3
.HS B.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.B.B.B.3
.HS 1.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.1.B.B.3
.HS 1.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.1.B.B.3
.HS 2.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.1.B.B.3
*--------------------------------------
* 65R02 OPCODES
*--------------------------------------
* 0.1.2.3.4.5.6.7.8.9.A.B.C.D.E.F
BIN.65R02 .HS 1.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.B.B.B.3
.HS B.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.B.B.B.3
.HS 1.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.1.B.B.3
.HS 1.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.1.B.B.3
.HS 2.2.2.1.2.2.2.2.1.2.1.1.B.B.B.3
.HS 2.2.2.1.2.2.2.2.1.B.1.1.1.B.B.3
2015-03-14 21:48:35 +00:00
*--------------------------------------
MAN
SAVE /A2OSX.SRC/SYS/KERNEL.S.BIN
LOAD /A2OSX.SRC/SYS/KERNEL.S
2015-03-14 21:48:35 +00:00
ASM