mirror of
https://github.com/a2-4am/4cade.git
synced 2025-02-17 07:31:19 +00:00
support Sammy Lightfoot
This commit is contained in:
parent
c582f49c70
commit
f312a6d3ee
@ -419,6 +419,12 @@ ProDOS_enter
|
|||||||
sta sizelo
|
sta sizelo
|
||||||
@set_blocks
|
@set_blocks
|
||||||
jsr hddrdwrpart
|
jsr hddrdwrpart
|
||||||
|
ldy #6
|
||||||
|
lda sizelo2
|
||||||
|
sta (packet), y
|
||||||
|
iny
|
||||||
|
lda sizehi2
|
||||||
|
sta (packet), y
|
||||||
@jmp_zp
|
@jmp_zp
|
||||||
jmp @restore_zp
|
jmp @restore_zp
|
||||||
|
|
||||||
|
@ -107,8 +107,10 @@ ver_02 = 1
|
|||||||
ldrhi = $56 ;set to load address if override_adr=1
|
ldrhi = $56 ;set to load address if override_adr=1
|
||||||
namlo = $57 ;name of file to access
|
namlo = $57 ;name of file to access
|
||||||
namhi = $58 ;name of file to access
|
namhi = $58 ;name of file to access
|
||||||
ldrlo2 = $68 ;original load address read from filesystem
|
ldrlo2 = $59 ;original load address read from filesystem
|
||||||
ldrhi2 = $69 ;original load address read from filesystem
|
ldrhi2 = $5a ;original load address read from filesystem
|
||||||
|
sizelo2 = $5b ;original file size read from filesystem
|
||||||
|
sizehi2 = $5c ;original file size read from filesystem
|
||||||
|
|
||||||
!if enable_floppy = 1 {
|
!if enable_floppy = 1 {
|
||||||
tmpsec = $3c ;(internal) sector number read from disk
|
tmpsec = $3c ;(internal) sector number read from disk
|
||||||
@ -196,7 +198,7 @@ ver_02 = 1
|
|||||||
SETAUXZP = $c009
|
SETAUXZP = $c009
|
||||||
|
|
||||||
first_zp = $40 ;lowest address to save if swap_zp enabled
|
first_zp = $40 ;lowest address to save if swap_zp enabled
|
||||||
last_zp = $5f ;highest address to save if swap_zp enabled (max 127 entries later)
|
last_zp = $62 ;highest address to save if swap_zp enabled (max 127 entries later)
|
||||||
|
|
||||||
D1S1 = 1 ;disk 1 side 1 volume ID if rwts_mode enabled
|
D1S1 = 1 ;disk 1 side 1 volume ID if rwts_mode enabled
|
||||||
|
|
||||||
@ -2271,13 +2273,16 @@ attribpatch
|
|||||||
|
|
||||||
!if allow_subdir = 1 {
|
!if allow_subdir = 1 {
|
||||||
plp
|
plp
|
||||||
!byte $24 ;mask the clc that follows
|
bcs hddrdwrfilei
|
||||||
} ;allow_subdir
|
} ;allow_subdir
|
||||||
++
|
++
|
||||||
} ;rwts_mode
|
} ;rwts_mode
|
||||||
|
|
||||||
hddrdfile
|
hddrdfile
|
||||||
hddrdwrfile
|
hddrdwrfile
|
||||||
|
lda #$ff
|
||||||
|
sta sizehi2
|
||||||
|
hddrdwrfilex
|
||||||
!if allow_subdir = 1 {
|
!if allow_subdir = 1 {
|
||||||
clc
|
clc
|
||||||
} ;allow_subdir
|
} ;allow_subdir
|
||||||
@ -2345,6 +2350,14 @@ dirbufpatch6
|
|||||||
} ;bounds_check
|
} ;bounds_check
|
||||||
|
|
||||||
hddcopyblock
|
hddcopyblock
|
||||||
|
ldx sizehi2
|
||||||
|
inx
|
||||||
|
bne +
|
||||||
|
lda sizehi
|
||||||
|
sta sizehi2
|
||||||
|
lda sizelo
|
||||||
|
sta sizelo2
|
||||||
|
+
|
||||||
!if allow_aux = 1 {
|
!if allow_aux = 1 {
|
||||||
ldx auxreq
|
ldx auxreq
|
||||||
jsr hddsetaux
|
jsr hddsetaux
|
||||||
@ -2416,21 +2429,8 @@ encbufpatch1
|
|||||||
sbc sizehi
|
sbc sizehi
|
||||||
sta sizehi
|
sta sizehi
|
||||||
ora sizelo
|
ora sizelo
|
||||||
!if allow_subdir = 1 {
|
|
||||||
!if no_interrupts = 1 {
|
|
||||||
clc
|
|
||||||
bne hddrdwrfilei
|
|
||||||
} else { ;no_interrupts = 0
|
|
||||||
bne hddrdwrfile
|
|
||||||
} ;no_interrupts
|
|
||||||
} else { ;allow_subdir = 0
|
|
||||||
bne hddrdwrfilei
|
|
||||||
} ;allow_subdir
|
|
||||||
!if allow_aux = 0 {
|
|
||||||
rts
|
|
||||||
} else { ;allow_aux
|
|
||||||
beq hddrdwrdone
|
beq hddrdwrdone
|
||||||
} ;allow_aux
|
jmp hddrdwrfilex
|
||||||
} else { ;aligned_read = 1
|
} else { ;aligned_read = 1
|
||||||
!if bounds_check = 1 {
|
!if bounds_check = 1 {
|
||||||
lda blefthi
|
lda blefthi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user