2015-03-14 21:48:35 +00:00
|
|
|
|
PR#3
|
2015-06-03 18:30:57 +00:00
|
|
|
|
PREFIX /A2OSX.SRC
|
2015-03-14 21:48:35 +00:00
|
|
|
|
NEW
|
|
|
|
|
INC 1
|
|
|
|
|
AUTO 6
|
|
|
|
|
.LIST OFF
|
|
|
|
|
*--------------------------------------
|
2016-09-27 15:51:59 +00:00
|
|
|
|
* BIN.LoadExeYA
|
2015-03-14 21:48:35 +00:00
|
|
|
|
* in :
|
2016-10-29 19:58:21 +00:00
|
|
|
|
* A = hMem of FilePath (PSTR)
|
2015-03-14 21:48:35 +00:00
|
|
|
|
* out :
|
|
|
|
|
* Y,A = MEMPTR
|
|
|
|
|
* X = hMem of Code Segment
|
|
|
|
|
*--------------------------------------
|
2016-09-30 06:24:52 +00:00
|
|
|
|
K.LoadEXEYA >STYA K.LoadEXEYA.Filename
|
2016-10-24 15:54:43 +00:00
|
|
|
|
>SYSCALL PStrUprYA Y,A unmodified
|
2016-11-01 21:34:29 +00:00
|
|
|
|
jsr MEM.GetMemByNameYA
|
2016-09-30 06:24:52 +00:00
|
|
|
|
bcs K.LoadEXEYA.1 not already loaded
|
2015-09-13 20:35:07 +00:00
|
|
|
|
|
2015-06-03 18:30:57 +00:00
|
|
|
|
>STYA ZPQuickPtr1 Save base address
|
2015-03-14 21:48:35 +00:00
|
|
|
|
ldy #S.MEM.REFCNT
|
2015-06-03 18:30:57 +00:00
|
|
|
|
lda (ZPQuickPtr1),y
|
2015-03-14 21:48:35 +00:00
|
|
|
|
inc
|
2015-06-03 18:30:57 +00:00
|
|
|
|
sta (ZPQuickPtr1),y
|
|
|
|
|
|
2016-09-28 15:34:15 +00:00
|
|
|
|
txa
|
|
|
|
|
jmp K.GetMemPtrA X=hMem from K.GetMemByNameA
|
|
|
|
|
*--------------------------------------
|
2016-09-30 06:24:52 +00:00
|
|
|
|
K.LoadEXEYA.1 >PUSHWI KrnBuf256
|
|
|
|
|
>PUSHW K.LoadEXEYA.Filename
|
2016-09-26 16:00:52 +00:00
|
|
|
|
jsr K.STAT Look for AUXTYPE
|
2016-09-28 15:34:15 +00:00
|
|
|
|
bcs .9
|
2016-09-26 16:00:52 +00:00
|
|
|
|
|
2016-10-03 06:18:46 +00:00
|
|
|
|
>LDYA KrnBuf256+S.STAT.PRODOS.AUXTYPE
|
2016-09-28 15:34:15 +00:00
|
|
|
|
>STYA BIN.Relocate.Start
|
2016-09-26 16:00:52 +00:00
|
|
|
|
|
2016-09-28 15:34:15 +00:00
|
|
|
|
>PUSHYA Push AUXTYPE
|
2016-09-22 06:19:49 +00:00
|
|
|
|
>PUSHBI 6 S.FILEINFO.TYPE.BIN
|
|
|
|
|
>PUSHBI SYS.FOPEN.R
|
2016-09-30 06:24:52 +00:00
|
|
|
|
>PUSHW K.LoadEXEYA.Filename
|
2016-10-03 06:18:46 +00:00
|
|
|
|
|
2016-09-22 06:19:49 +00:00
|
|
|
|
jsr K.LoadFile
|
2016-09-28 15:34:15 +00:00
|
|
|
|
.9 bcs .99 Error Loading file
|
2016-09-30 15:04:55 +00:00
|
|
|
|
|
2016-09-30 06:24:52 +00:00
|
|
|
|
stx K.LoadEXEYA.hMem save hMem
|
2016-09-28 15:34:15 +00:00
|
|
|
|
|
2016-09-30 15:04:55 +00:00
|
|
|
|
pha YA=CODE+DATA size
|
|
|
|
|
tya
|
|
|
|
|
* clc CC from bcs .99
|
2016-09-28 15:34:15 +00:00
|
|
|
|
|
2016-09-30 15:04:55 +00:00
|
|
|
|
adc BIN.Relocate.Start Get AUXTYPE for actual Base Address
|
|
|
|
|
sta BIN.Relocate.End compute Range End=AUXTYPE+FILELEN
|
|
|
|
|
pla
|
|
|
|
|
adc BIN.Relocate.Start+1
|
2016-09-28 15:34:15 +00:00
|
|
|
|
sta BIN.Relocate.End+1
|
2016-09-30 15:04:55 +00:00
|
|
|
|
|
|
|
|
|
txa
|
|
|
|
|
jsr K.GetMemPtrA
|
|
|
|
|
>STYA ZPQuickPtr1 set ZPQuickPtr1 -> Code start
|
|
|
|
|
|
|
|
|
|
pha YA = actual load address
|
|
|
|
|
tya
|
2016-09-28 15:34:15 +00:00
|
|
|
|
sec
|
|
|
|
|
sbc BIN.Relocate.Start
|
|
|
|
|
sta BIN.Relocate.Offset Offset=ZPQuickPtr1-AUXTYPE
|
2016-09-30 15:04:55 +00:00
|
|
|
|
pla
|
2016-09-28 15:34:15 +00:00
|
|
|
|
sbc BIN.Relocate.Start+1
|
|
|
|
|
sta BIN.Relocate.Offset+1
|
|
|
|
|
|
2016-09-30 15:04:55 +00:00
|
|
|
|
ldy #H.BIN.CODE.LEN get Code Len
|
2016-10-12 15:46:38 +00:00
|
|
|
|
lda (ZPQuickPtr1),y
|
|
|
|
|
clc
|
|
|
|
|
adc ZPQuickPtr1
|
|
|
|
|
sta ZPQuickPtr2 Make ZPQuickPtr2 = ZPQuickPtr1 + CodeLen
|
|
|
|
|
iny
|
|
|
|
|
lda (ZPQuickPtr1),y
|
|
|
|
|
adc ZPQuickPtr1+1
|
|
|
|
|
sta ZPQuickPtr2+1
|
2016-09-30 15:04:55 +00:00
|
|
|
|
|
|
|
|
|
jsr BIN.RelocateEXE
|
2015-06-03 18:30:57 +00:00
|
|
|
|
|
2016-09-30 06:24:52 +00:00
|
|
|
|
>LDYA K.LoadEXEYA.Filename get back bin path
|
2016-10-24 15:54:43 +00:00
|
|
|
|
>SYSCALL NewPStrYA make a copy of this string
|
2015-03-14 21:48:35 +00:00
|
|
|
|
bcs .98
|
2015-09-13 20:35:07 +00:00
|
|
|
|
|
2016-09-30 15:04:55 +00:00
|
|
|
|
lda K.LoadEXEYA.hMem Keep X=hMem
|
|
|
|
|
jsr K.GetMemByIDA X unmodified
|
2015-03-14 21:48:35 +00:00
|
|
|
|
>STYA ZPQuickPtr1
|
2015-06-03 18:30:57 +00:00
|
|
|
|
|
2015-03-14 21:48:35 +00:00
|
|
|
|
lda (ZPQuickPtr1)
|
|
|
|
|
ora #S.MEM.F.CODE This is a code segment
|
|
|
|
|
sta (ZPQuickPtr1)
|
2016-03-13 21:47:19 +00:00
|
|
|
|
|
2016-09-30 15:04:55 +00:00
|
|
|
|
txa Get Back hMem
|
2015-03-14 21:48:35 +00:00
|
|
|
|
ldy #S.MEM.BIN
|
|
|
|
|
sta (ZPQuickPtr1),y
|
2015-06-03 18:30:57 +00:00
|
|
|
|
|
2016-09-30 06:24:52 +00:00
|
|
|
|
lda K.LoadEXEYA.hMem
|
2015-06-03 18:30:57 +00:00
|
|
|
|
tax return hMEM to Caller...
|
2016-09-21 15:20:37 +00:00
|
|
|
|
jsr K.GetMemPtrA
|
2015-06-03 18:30:57 +00:00
|
|
|
|
clc ...and Y,A=PTR to CS
|
2015-03-14 21:48:35 +00:00
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
.98 pha
|
2016-09-30 06:24:52 +00:00
|
|
|
|
lda K.LoadEXEYA.hMem
|
2016-09-21 15:20:37 +00:00
|
|
|
|
jsr K.FreeMemA Discard Loaded Code
|
2015-03-14 21:48:35 +00:00
|
|
|
|
pla
|
|
|
|
|
|
2015-06-03 18:30:57 +00:00
|
|
|
|
sec
|
2016-08-19 14:52:18 +00:00
|
|
|
|
.99 rts
|
2015-03-14 21:48:35 +00:00
|
|
|
|
*--------------------------------------
|
2016-09-30 06:24:52 +00:00
|
|
|
|
K.LoadEXEYA.Filename .BS 2
|
|
|
|
|
K.LoadEXEYA.hMem .BS 1
|
2016-09-27 15:51:59 +00:00
|
|
|
|
*--------------------------------------
|
2016-09-28 15:34:15 +00:00
|
|
|
|
* BIN.InstallDRV
|
2016-10-04 16:01:07 +00:00
|
|
|
|
* In:
|
|
|
|
|
* pDrv = .DRV File Loaded Address
|
|
|
|
|
* Note:
|
|
|
|
|
* K.LoadEXEYA called from K.LoadDrvYA
|
|
|
|
|
* Already setup correctly pDrv,
|
|
|
|
|
* BIN.Relocate.Start,End
|
2016-09-27 15:51:59 +00:00
|
|
|
|
*--------------------------------------
|
2016-10-05 15:57:43 +00:00
|
|
|
|
BIN.InstallDRV ldy #H.BIN.DRV.CODE.O
|
2016-09-27 15:51:59 +00:00
|
|
|
|
lda (pDrv),y
|
|
|
|
|
clc
|
2016-10-05 15:57:43 +00:00
|
|
|
|
adc BIN.Relocate.Start Advance start From AUXTYPE to AUXTYPE+DRV code offset
|
2016-09-28 15:34:15 +00:00
|
|
|
|
sta BIN.Relocate.Start
|
2016-10-04 16:01:07 +00:00
|
|
|
|
|
2016-09-27 15:51:59 +00:00
|
|
|
|
iny
|
|
|
|
|
lda (pDrv),y
|
2016-09-28 15:34:15 +00:00
|
|
|
|
adc BIN.Relocate.Start+1
|
|
|
|
|
sta BIN.Relocate.Start+1
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-10-05 15:57:43 +00:00
|
|
|
|
lda DevMgr.Free Offset = Target DRV address-(AUXTYPE+DRV OFFSET)
|
|
|
|
|
sec
|
|
|
|
|
sbc BIN.Relocate.Start
|
|
|
|
|
sta BIN.Relocate.Offset
|
|
|
|
|
|
|
|
|
|
lda DevMgr.Free+1
|
|
|
|
|
sbc BIN.Relocate.Start+1
|
|
|
|
|
sta BIN.Relocate.Offset+1
|
|
|
|
|
|
2016-09-30 15:04:55 +00:00
|
|
|
|
lda BIN.Relocate.End Compute DRVLen=End-start
|
2016-09-27 15:51:59 +00:00
|
|
|
|
sec
|
2016-09-30 15:04:55 +00:00
|
|
|
|
sbc BIN.Relocate.Start
|
2016-09-29 15:30:15 +00:00
|
|
|
|
sta BIN.InstallDRV.DRVLen
|
2016-09-30 15:04:55 +00:00
|
|
|
|
|
|
|
|
|
lda BIN.Relocate.End+1
|
|
|
|
|
sbc BIN.Relocate.Start+1
|
|
|
|
|
sta BIN.InstallDRV.DRVLen+1
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
|
|
|
|
lda DevMgr.Free
|
|
|
|
|
clc
|
2016-09-29 15:30:15 +00:00
|
|
|
|
adc BIN.InstallDRV.DRVLen
|
|
|
|
|
sta BIN.InstallDRV.DRVEnd
|
2016-09-30 15:04:55 +00:00
|
|
|
|
tay Save DRVEnd LO
|
2016-09-27 15:51:59 +00:00
|
|
|
|
lda DevMgr.Free+1
|
2016-09-30 15:04:55 +00:00
|
|
|
|
adc BIN.InstallDRV.DRVLen+1 A = DRVEnd HI
|
2016-09-29 15:30:15 +00:00
|
|
|
|
sta BIN.InstallDRV.DRVEnd+1
|
2016-09-30 15:04:55 +00:00
|
|
|
|
|
2016-10-04 16:01:07 +00:00
|
|
|
|
bcs .9 we crossed $FFFF, out of mem
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-09-30 15:04:55 +00:00
|
|
|
|
cpy #DevMgr.HiMem
|
2016-09-27 15:51:59 +00:00
|
|
|
|
sbc /DevMgr.HiMem
|
2016-10-04 16:01:07 +00:00
|
|
|
|
bcs .9 No More Room to load Driver....
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
|
|
|
|
lda DevMgr.LastDevID
|
|
|
|
|
inc
|
|
|
|
|
cmp #K.DEV.MAX
|
2016-10-04 16:01:07 +00:00
|
|
|
|
bne .10 No Device Handle Left
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-10-04 16:01:07 +00:00
|
|
|
|
lda #DEVMGR.ERROOH
|
2016-09-27 15:51:59 +00:00
|
|
|
|
sec
|
2016-10-04 16:01:07 +00:00
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
.9 lda #DEVMGR.ERROOM
|
2016-09-27 15:51:59 +00:00
|
|
|
|
sec
|
|
|
|
|
rts
|
|
|
|
|
|
2016-10-04 16:01:07 +00:00
|
|
|
|
.10 sta DevMgr.LastDevID
|
|
|
|
|
|
2016-10-24 15:54:43 +00:00
|
|
|
|
>SYSCALL GetDevByIDA
|
2016-10-04 16:01:07 +00:00
|
|
|
|
>STYA ZPQuickPtr2 setup Ptr2 to dest HEADER
|
|
|
|
|
|
|
|
|
|
ldy #H.BIN.DRV.HEADER.O
|
2016-09-27 15:51:59 +00:00
|
|
|
|
lda (pDrv),y
|
|
|
|
|
clc
|
|
|
|
|
adc pDrv
|
|
|
|
|
sta ZPQuickPtr1
|
|
|
|
|
iny
|
|
|
|
|
lda (pDrv),y
|
|
|
|
|
adc pDrv+1
|
2016-10-04 16:01:07 +00:00
|
|
|
|
sta ZPQuickPtr1+1 set Ptr1 to Src HEADER
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-10-04 16:01:07 +00:00
|
|
|
|
ldy #S.DEV-1
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-10-04 16:01:07 +00:00
|
|
|
|
.1 lda (ZPQuickPtr1),y copy header to DevMgr.Table
|
|
|
|
|
sta (ZPQuickPtr2),y
|
2016-09-27 15:51:59 +00:00
|
|
|
|
dey
|
|
|
|
|
bpl .1
|
2016-10-04 16:01:07 +00:00
|
|
|
|
|
2016-10-06 15:50:20 +00:00
|
|
|
|
ldy #S.DEV.ID
|
|
|
|
|
lda DevMgr.LastDevID
|
2016-10-04 16:01:07 +00:00
|
|
|
|
sta (ZPQuickPtr2),y
|
2016-10-06 15:50:20 +00:00
|
|
|
|
|
|
|
|
|
dey #S.DEV.JMP+1 Setup Main JMP
|
2016-10-04 16:01:07 +00:00
|
|
|
|
lda DevMgr.Free+1
|
|
|
|
|
sta (ZPQuickPtr2),y
|
2016-10-06 15:50:20 +00:00
|
|
|
|
tax
|
|
|
|
|
|
|
|
|
|
dey #S.DEV.JMP
|
|
|
|
|
lda DevMgr.Free
|
|
|
|
|
sta (ZPQuickPtr2),y
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-10-06 15:50:20 +00:00
|
|
|
|
sta ZPQuickPtr2 set Ptr2 to Dest CODE
|
|
|
|
|
stx ZPQuickPtr2+1
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-10-04 16:01:07 +00:00
|
|
|
|
ldy #H.BIN.DRV.CODE.O
|
2016-09-27 15:51:59 +00:00
|
|
|
|
lda (pDrv),y
|
|
|
|
|
clc
|
|
|
|
|
adc pDrv
|
|
|
|
|
sta ZPQuickPtr1
|
2016-10-04 16:01:07 +00:00
|
|
|
|
iny
|
2016-09-27 15:51:59 +00:00
|
|
|
|
lda (pDrv),y
|
|
|
|
|
adc pDrv+1
|
2016-10-04 16:01:07 +00:00
|
|
|
|
sta ZPQuickPtr1+1 set Ptr1 to Src CODE
|
|
|
|
|
|
2016-09-29 15:30:15 +00:00
|
|
|
|
lda BIN.InstallDRV.DrvLen+1
|
2016-09-28 15:34:15 +00:00
|
|
|
|
eor #$ff
|
|
|
|
|
pha
|
2016-09-29 15:30:15 +00:00
|
|
|
|
lda BIN.InstallDRV.DrvLen
|
2016-09-28 15:34:15 +00:00
|
|
|
|
eor #$ff
|
|
|
|
|
tax
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-09-28 15:34:15 +00:00
|
|
|
|
ldy #0
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-10-04 16:01:07 +00:00
|
|
|
|
.2 inx Move CODE in LC
|
2016-09-27 15:51:59 +00:00
|
|
|
|
bne .3
|
2016-09-28 15:34:15 +00:00
|
|
|
|
pla
|
2016-10-04 16:01:07 +00:00
|
|
|
|
inc
|
|
|
|
|
beq .4
|
2016-09-28 15:34:15 +00:00
|
|
|
|
pha
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-09-28 15:34:15 +00:00
|
|
|
|
.3 lda (ZPQuickPtr1),y
|
|
|
|
|
sta (ZPQuickPtr2),y
|
|
|
|
|
iny
|
|
|
|
|
bne .2
|
|
|
|
|
inc ZPQuickPtr1+1
|
|
|
|
|
inc ZPQuickPtr2+1
|
2016-10-04 16:01:07 +00:00
|
|
|
|
bra .2
|
|
|
|
|
|
|
|
|
|
.4 ldy #H.BIN.DRV.CODE.LEN
|
|
|
|
|
lda DevMgr.Free Make Ptr1 = code start
|
|
|
|
|
sta ZPQuickPtr1
|
|
|
|
|
clc
|
|
|
|
|
adc (pDrv),y
|
|
|
|
|
sta ZPQuickPtr2
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-10-04 16:01:07 +00:00
|
|
|
|
iny
|
|
|
|
|
lda DevMgr.Free+1
|
|
|
|
|
sta ZPQuickPtr1+1
|
|
|
|
|
adc (pDrv),y
|
|
|
|
|
sta ZPQuickPtr2+1 Make ZPQuickPtr2 = ZPQuickPtr1 + CodeLen
|
|
|
|
|
|
|
|
|
|
jsr BIN.RelocateDRV
|
|
|
|
|
|
|
|
|
|
>LDYA BIN.InstallDRV.DrvEnd
|
|
|
|
|
>STYA DevMgr.Free
|
|
|
|
|
clc
|
|
|
|
|
rts
|
2016-09-27 15:51:59 +00:00
|
|
|
|
*--------------------------------------
|
2016-09-29 15:30:15 +00:00
|
|
|
|
BIN.InstallDRV.DrvLen .BS 2
|
|
|
|
|
BIN.InstallDRV.DrvEnd .BS 2
|
2016-09-27 15:51:59 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
* BIN.Relocate___ :
|
2016-09-28 15:34:15 +00:00
|
|
|
|
* In :
|
|
|
|
|
* ZPQuickPtr1 = Ptr to Code
|
2016-09-30 15:04:55 +00:00
|
|
|
|
* ZPQuickPtr2 = End Of Code
|
2016-09-28 15:34:15 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
BIN.Relocate.Start .BS 2
|
|
|
|
|
BIN.Relocate.End .BS 2
|
|
|
|
|
BIN.Relocate.Offset .BS 2
|
2016-09-27 15:51:59 +00:00
|
|
|
|
*--------------------------------------
|
2016-09-30 15:04:55 +00:00
|
|
|
|
BIN.RelocateEXE ldy #H.BIN.HEADER+1
|
|
|
|
|
lda (ZPQuickPtr1),y
|
|
|
|
|
cmp /H.BIN.HEADER.BIN65
|
2016-10-04 16:01:07 +00:00
|
|
|
|
beq .1
|
|
|
|
|
cmp /H.BIN.HEADER.DRV65
|
|
|
|
|
beq .1
|
|
|
|
|
|
|
|
|
|
lda #SYSMGR.ERRIBIN
|
|
|
|
|
sec
|
|
|
|
|
rts
|
2016-10-03 06:18:46 +00:00
|
|
|
|
|
2016-10-04 16:01:07 +00:00
|
|
|
|
.1 ldy #H.BIN.JMP relocate Main JMP
|
2016-09-27 15:51:59 +00:00
|
|
|
|
lda (ZPQuickPtr1),y
|
|
|
|
|
clc
|
2016-09-28 15:34:15 +00:00
|
|
|
|
adc BIN.Relocate.Offset
|
2016-09-27 15:51:59 +00:00
|
|
|
|
sta (ZPQuickPtr1),y
|
|
|
|
|
|
|
|
|
|
iny
|
|
|
|
|
lda (ZPQuickPtr1),y
|
2016-09-28 15:34:15 +00:00
|
|
|
|
adc BIN.Relocate.Offset+1
|
2016-09-27 15:51:59 +00:00
|
|
|
|
sta (ZPQuickPtr1),y
|
|
|
|
|
|
2016-09-30 15:04:55 +00:00
|
|
|
|
ldy #H.BIN.EXE.REL.TABLE skip Header, CS.SIZE & DS.SIZE... (16 bytes)
|
|
|
|
|
|
2016-09-27 15:51:59 +00:00
|
|
|
|
.HS 2C bit abs
|
2016-09-28 15:34:15 +00:00
|
|
|
|
*--------------------------------------
|
2016-09-30 15:04:55 +00:00
|
|
|
|
BIN.RelocateDRV ldy #H.BIN.DRV.REL.TABLE
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
|
|
|
|
.1 lda (ZPQuickPtr1),y Start Relocate JMP table
|
2016-09-28 15:34:15 +00:00
|
|
|
|
tax LO in X
|
2016-09-27 15:51:59 +00:00
|
|
|
|
iny
|
2016-09-28 15:34:15 +00:00
|
|
|
|
ora (ZPQuickPtr1),y ORA with HI
|
2016-09-27 15:51:59 +00:00
|
|
|
|
beq .2 $0000 = end of table
|
|
|
|
|
|
|
|
|
|
dey
|
2016-09-28 15:34:15 +00:00
|
|
|
|
txa get back LO
|
2016-09-27 15:51:59 +00:00
|
|
|
|
clc
|
2016-09-28 15:34:15 +00:00
|
|
|
|
adc BIN.Relocate.Offset
|
2016-09-27 15:51:59 +00:00
|
|
|
|
sta (ZPQuickPtr1),y
|
|
|
|
|
|
|
|
|
|
iny
|
|
|
|
|
lda (ZPQuickPtr1),y
|
2016-09-28 15:34:15 +00:00
|
|
|
|
adc BIN.Relocate.Offset+1
|
2016-09-27 15:51:59 +00:00
|
|
|
|
sta (ZPQuickPtr1),y
|
|
|
|
|
|
|
|
|
|
iny
|
|
|
|
|
|
|
|
|
|
bra .1
|
2016-09-28 15:34:15 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
.2 tya add current offset in Y to Ptr
|
|
|
|
|
|
|
|
|
|
sec + 1 to skip last 00 from beq .2
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
|
|
|
|
adc ZPQuickPtr1
|
|
|
|
|
sta ZPQuickPtr1
|
2016-09-28 15:34:15 +00:00
|
|
|
|
bcc .3
|
2016-09-27 15:51:59 +00:00
|
|
|
|
inc ZPQuickPtr1+1 ZPQuickPtr1=Current Code PTR
|
|
|
|
|
|
2016-09-30 15:04:55 +00:00
|
|
|
|
.3 lda (ZPQuickPtr1) get OPCODE
|
2016-09-28 15:34:15 +00:00
|
|
|
|
lsr /2
|
2016-09-27 15:51:59 +00:00
|
|
|
|
tax
|
|
|
|
|
lda BIN.OPCODES,x get OPCODE definition
|
2016-09-30 15:04:55 +00:00
|
|
|
|
bcs .4 go get LO nibble
|
2016-09-28 15:34:15 +00:00
|
|
|
|
lsr
|
|
|
|
|
lsr move HI -> LO
|
|
|
|
|
lsr
|
|
|
|
|
lsr
|
2016-09-30 15:04:55 +00:00
|
|
|
|
.4 and #$0f
|
2016-09-28 15:34:15 +00:00
|
|
|
|
|
|
|
|
|
bit #$8 abs addressing?
|
2016-09-30 15:04:55 +00:00
|
|
|
|
beq .6 no....
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-09-28 15:34:15 +00:00
|
|
|
|
and #7 save Opcode length...
|
2016-09-27 15:51:59 +00:00
|
|
|
|
pha
|
|
|
|
|
|
|
|
|
|
ldy #1
|
|
|
|
|
lda (ZPQuickPtr1),y Get LO
|
2016-09-28 15:34:15 +00:00
|
|
|
|
tax save LO in X
|
|
|
|
|
|
|
|
|
|
iny make Y point to HI
|
|
|
|
|
|
|
|
|
|
cpx BIN.Relocate.Start
|
2016-09-27 15:51:59 +00:00
|
|
|
|
lda (ZPQuickPtr1),y Get HI
|
2016-09-28 15:34:15 +00:00
|
|
|
|
sbc BIN.Relocate.Start+1
|
2016-09-30 15:04:55 +00:00
|
|
|
|
bcc .5 addr < BIN.Relocate.Start, out of range
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-09-28 15:34:15 +00:00
|
|
|
|
txa Get back LO
|
|
|
|
|
cpx BIN.Relocate.End
|
2016-09-27 15:51:59 +00:00
|
|
|
|
lda (ZPQuickPtr1),y Get HI
|
2016-09-28 15:34:15 +00:00
|
|
|
|
sbc BIN.Relocate.End+1
|
2016-09-30 15:04:55 +00:00
|
|
|
|
bcs .5 addr > BIN.Relocate.End, out of range
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-09-28 15:34:15 +00:00
|
|
|
|
txa Get back LO
|
|
|
|
|
* clc CC from bcs .6
|
|
|
|
|
adc BIN.Relocate.Offset add Offset to abs address
|
2016-09-27 15:51:59 +00:00
|
|
|
|
dey
|
|
|
|
|
sta (ZPQuickPtr1),y store relocated addr LO
|
|
|
|
|
iny
|
|
|
|
|
lda (ZPQuickPtr1),y Get HI
|
2016-09-28 15:34:15 +00:00
|
|
|
|
adc BIN.Relocate.Offset+1
|
2016-09-27 15:51:59 +00:00
|
|
|
|
sta (ZPQuickPtr1),y store relocated addr HI
|
|
|
|
|
|
2016-09-30 15:04:55 +00:00
|
|
|
|
.5 pla get back Opcode length...
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-09-30 15:04:55 +00:00
|
|
|
|
.6 clc A = OPCODE length
|
2016-09-27 15:51:59 +00:00
|
|
|
|
adc ZPQuickPtr1
|
|
|
|
|
sta ZPQuickPtr1
|
2016-09-30 15:04:55 +00:00
|
|
|
|
bcc .7
|
2016-09-27 15:51:59 +00:00
|
|
|
|
inc ZPQuickPtr1+1
|
2016-09-30 15:04:55 +00:00
|
|
|
|
|
|
|
|
|
.7 eor ZPQuickPtr2 A = ZPQuickPtr1
|
|
|
|
|
bne .3
|
|
|
|
|
lda ZPQuickPtr1+1
|
|
|
|
|
eor ZPQuickPtr2+1
|
|
|
|
|
bne .3 next opcode....
|
2016-09-27 15:51:59 +00:00
|
|
|
|
|
2016-09-30 06:24:52 +00:00
|
|
|
|
.8 rts
|
2016-09-27 15:51:59 +00:00
|
|
|
|
*--------------------------------------
|
|
|
|
|
* 65C02 OPCODES
|
2016-09-28 15:34:15 +00:00
|
|
|
|
* Bit 3 : 1 = absolute addressing
|
|
|
|
|
* Bit 2-1-0 : opcode + @ length
|
2016-09-27 15:51:59 +00:00
|
|
|
|
*--------------------------------------
|
2016-09-28 15:34:15 +00:00
|
|
|
|
* 0.1.2.3.4.5.6.7.8.9.A.B.C.D.E.F
|
|
|
|
|
BIN.OPCODES .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 SYS/KERNEL.S.BIN
|
|
|
|
|
LOAD SYS/KERNEL.S
|
|
|
|
|
ASM
|