mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
13e0436336
git-svn-id: svn://svn.cc65.org/cc65/trunk@3742 b7a2c559-68d2-44c3-8de9-860c34a00d81
41 lines
703 B
ArmAsm
41 lines
703 B
ArmAsm
;
|
|
; Oliver Schmidt, 18.04.2005
|
|
;
|
|
|
|
.export initcwd
|
|
.import __cwd
|
|
|
|
.include "zeropage.inc"
|
|
.include "mli.inc"
|
|
|
|
initcwd:
|
|
; Set static prefix buffer
|
|
lda #<__cwd
|
|
ldx #>__cwd
|
|
sta mliparam + MLI::PREFIX::PATHNAME
|
|
stx mliparam + MLI::PREFIX::PATHNAME+1
|
|
|
|
; Get current working directory
|
|
lda #GET_PREFIX_CALL
|
|
ldx #PREFIX_COUNT
|
|
jsr callmli
|
|
|
|
; Check for null prefix
|
|
lda __cwd
|
|
beq done
|
|
|
|
; Remove length byte and trailing slash
|
|
sta tmp1
|
|
ldx #$01
|
|
: lda __cwd,x
|
|
sta __cwd - 1,x
|
|
inx
|
|
cpx tmp1
|
|
bcc :-
|
|
|
|
; Add terminating zero
|
|
lda #$00
|
|
sta __cwd - 1,x
|
|
|
|
done: rts
|