1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 01:29:37 +00:00
cc65/libsrc/common/chdir.s
cuz 8bfaa09b77 Added a getcwd function
git-svn-id: svn://svn.cc65.org/cc65/trunk@2275 b7a2c559-68d2-44c3-8de9-860c34a00d81
2003-08-12 13:51:11 +00:00

25 lines
596 B
ArmAsm

;
; Ullrich von Bassewitz, 2003-08-12
;
; int __fastcall__ chdir (const char* name);
;
.export _chdir
.import __syschdir
.import oserrcheck
;--------------------------------------------------------------------------
; 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 oserrcheck ; Store into _oserror, set errno, return 0/-1
.endproc