2003-08-12 13:51:11 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2003-08-12
|
|
|
|
;
|
|
|
|
; char* __fastcall__ getcwd (char* buf, size_t size);
|
|
|
|
;
|
|
|
|
|
|
|
|
.export _getcwd
|
|
|
|
|
|
|
|
.import popax
|
|
|
|
.import __cwd
|
|
|
|
.importzp ptr1, ptr2
|
|
|
|
|
|
|
|
.include "errno.inc"
|
|
|
|
|
|
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
.proc _getcwd
|
|
|
|
|
|
|
|
; Remember -size-1 because this simplifies the following loop
|
|
|
|
|
|
|
|
eor #$FF
|
|
|
|
sta ptr2
|
|
|
|
txa
|
|
|
|
eor #$FF
|
|
|
|
sta ptr2+1
|
|
|
|
|
|
|
|
jsr popax ; Get buf
|
|
|
|
sta ptr1
|
|
|
|
stx ptr1+1 ; Save buf
|
|
|
|
|
|
|
|
; Copy __cwd to the given buffer checking the length
|
|
|
|
|
|
|
|
ldy #$00
|
|
|
|
loop: inc ptr2
|
|
|
|
bne @L1
|
|
|
|
inc ptr2+1
|
|
|
|
beq overflow
|
|
|
|
|
2003-08-12 13:58:17 +00:00
|
|
|
; Copy one character, end the loop if the zero terminator is reached. We
|
|
|
|
; don't support directories longer than 255 characters for now.
|
2003-08-12 13:51:11 +00:00
|
|
|
|
|
|
|
@L1: lda __cwd,y
|
|
|
|
sta (ptr1),y
|
2003-08-12 13:58:17 +00:00
|
|
|
beq done
|
|
|
|
iny
|
2003-08-12 13:51:11 +00:00
|
|
|
bne loop
|
|
|
|
|
2003-08-12 13:58:17 +00:00
|
|
|
; For some reason the cwd is longer than 255 characters. This should not
|
|
|
|
; happen, we handle it as if the passed buffer was too short.
|
|
|
|
;
|
2003-08-12 13:51:11 +00:00
|
|
|
; String overflow, return ERANGE
|
|
|
|
|
|
|
|
overflow:
|
|
|
|
lda #<ERANGE
|
2010-06-03 21:29:28 +00:00
|
|
|
jsr __seterrno ; Returns 0 in A
|
|
|
|
tax ; Return zero
|
|
|
|
rts
|
|
|
|
|
2003-08-12 13:58:17 +00:00
|
|
|
; Success, return buf
|
|
|
|
|
|
|
|
done: lda ptr1
|
|
|
|
ldx ptr1+1
|
2003-08-12 13:51:11 +00:00
|
|
|
rts
|
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
|