1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-22 01:16:54 +00:00

New stuff contributed by Oliver Schmidt

git-svn-id: svn://svn.cc65.org/cc65/trunk@3608 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-08-31 20:11:45 +00:00
parent 476e3f9acc
commit c732d3e360
17 changed files with 719 additions and 6 deletions
+2
View File
@@ -137,6 +137,7 @@ S_OBJS = _cwd.o \
memcpy.o \
memmove.o \
memset.o \
mkdir.o \
modfree.o \
modload.o \
oserrcheck.o \
@@ -147,6 +148,7 @@ S_OBJS = _cwd.o \
raise.o \
remove.o \
rename.o \
rmdir.o \
scanf.o \
searchenv.o \
setjmp.o \
+20
View File
@@ -0,0 +1,20 @@
;
; Oliver Schmidt, 2005-08-30
;
; int mkdir (const char* name, ...); /* May take a mode argument */
;
.export _mkdir
.import __sysmkdir
.import oserrcheck
;--------------------------------------------------------------------------
.proc _mkdir
jsr __sysmkdir ; Call the machine specific function
jmp oserrcheck ; Store into _oserror, set errno, return 0/-1
.endproc
+20
View File
@@ -0,0 +1,20 @@
;
; Oliver Schmidt, 2005-08-30
;
; int __fastcall__ rmdir (const char* name);
;
.export _rmdir
.import __sysrmdir
.import oserrcheck
;--------------------------------------------------------------------------
.proc _rmdir
jsr __sysrmdir ; Call the machine specific function
jmp oserrcheck ; Store into _oserror, set errno, return 0/-1
.endproc