mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 19:29:37 +00:00
25 lines
601 B
ArmAsm
25 lines
601 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 2003-08-12
|
|
;
|
|
; int __fastcall__ chdir (const char* name);
|
|
;
|
|
|
|
.export _chdir
|
|
|
|
.import __syschdir
|
|
.import ___mappederrno
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
; The function calls __syschdir, which must check the directory, set it, and
|
|
; copy it to __cwd if it is valid. The copycwd may be used for the latter.
|
|
|
|
.proc _chdir
|
|
|
|
jsr __syschdir ; Call the machine specific function
|
|
jmp ___mappederrno ; Store into __oserror, set errno, return 0/-1
|
|
|
|
.endproc
|
|
|
|
|