4cade/src/prodos.path.a

80 lines
1.8 KiB
Plaintext
Raw Normal View History

2018-09-13 13:53:04 +00:00
;license:MIT
;(c) 2018-9 by 4am
2018-09-13 13:53:04 +00:00
;
; ProDOS - functions for constructing and passing around ProDOS pathnames
;
; Public functions
; - SetPath
2018-09-13 13:53:04 +00:00
; - AddToPath
;
2018-12-29 18:29:17 +00:00
kHGRTitleDirectory
!byte 10
!raw "TITLE.HGR/"
2019-02-09 01:48:07 +00:00
kDHGRTitleDirectory
!byte 11
!raw "TITLE.DHGR/"
2018-10-28 18:04:52 +00:00
2018-12-29 18:29:17 +00:00
kHGRActionDirectory
!byte 11
!raw "ACTION.HGR/"
2018-12-29 18:29:17 +00:00
2019-02-09 01:48:07 +00:00
kDHGRActionDirectory
!byte 12
!raw "ACTION.DHGR/"
2018-09-13 13:53:04 +00:00
2019-01-13 23:55:40 +00:00
kSHRArtworkDirectory
!byte 12
!raw "ARTWORK.SHR/"
2019-01-13 23:55:40 +00:00
2018-10-27 22:47:27 +00:00
kAttractModeSlideshowDirectory
!byte 3
!raw "SS/"
2018-10-27 22:47:27 +00:00
2018-10-28 21:20:48 +00:00
kDemoDirectory
!byte 5
!raw "DEMO/"
2018-10-28 21:20:48 +00:00
2019-01-08 19:10:26 +00:00
kGameDirectory
!byte 2
!raw "X/"
2019-01-08 19:10:26 +00:00
kFXDirectory
!byte 3
!raw "FX/"
2018-09-13 13:53:04 +00:00
;------------------------------------------------------------------------------
2019-06-19 02:40:17 +00:00
; SetPath/AddToPath
2018-09-13 13:53:04 +00:00
; append a length-prefixed string to gPathname
2019-06-19 02:40:17 +00:00
; SetPath will reset the path first
2018-09-13 13:53:04 +00:00
;
; in: A contains low byte of address of length-prefixed string to append
; Y contains high byte of address of length-prefixed string to append
; out: all registers and flags clobbered
; $00/$01 clobbered
; gPathname updated with concatenated length-prefixed string
;------------------------------------------------------------------------------
2019-06-19 02:40:17 +00:00
SetPath
ldx #0
stx gPathname
2019-06-19 02:40:17 +00:00
; execution falls through here
2018-09-13 13:53:04 +00:00
AddToPath
+STAY $00
ldx gPathname ; current pathname length
ldy #0
lda ($00),y ; length of this segment
tay
iny
sty @len
ldy #$01
- lda ($00),y
sta gPathname+1,x
inx
iny
@len=*+1
cpy #$FD ; SMC
bcc -
stx gPathname
rts