1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-14 19:29:26 +00:00
cc65/libsrc/apple2/rootdir.s
ol.sc 2e0ab6f863 Set _oserror only on error.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4679 b7a2c559-68d2-44c3-8de9-860c34a00d81
2010-06-01 21:01:59 +00:00

57 lines
1.1 KiB
ArmAsm

;
; Oliver Schmidt, 2010-05-24
;
; unsigned char __fastcall__ rootdir (unsigned char drive, char* buf);
;
.export _rootdir
.import popax
.include "zeropage.inc"
.include "errno.inc"
.include "mli.inc"
_rootdir:
; Save buf
sta ptr1
stx ptr1+1
; Set buf
sta mliparam + MLI::ON_LINE::DATA_BUFFER
stx mliparam + MLI::ON_LINE::DATA_BUFFER+1
; Set drive
jsr popax
sta mliparam + MLI::ON_LINE::UNIT_NUM
; Get volume name
lda #ON_LINE_CALL
ldx #ON_LINE_COUNT
jsr callmli
bcs oserr
; Get volume name length
ldy #$00
lda (ptr1),y
and #15 ; Max volume name length
sta tmp1
; Add leading slash
lda #'/'
sta (ptr1),y
; Add terminating zero
ldy tmp1
iny
lda #$00
sta (ptr1),y
; Return success
tax
rts
; Return error
oserr: sta __oserror
ldx #$00
rts