Rewrote _fopen in assembler

git-svn-id: svn://svn.cc65.org/cc65/trunk@1607 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-11-23 17:52:38 +00:00
parent c61729a15a
commit 6f198ae131
5 changed files with 126 additions and 88 deletions

View File

@@ -34,7 +34,7 @@ extern FILE _filetab [FOPEN_MAX];
FILE* _fopen (const char* name, const char* mode, FILE* f);
FILE* __fastcall__ _fopen (const char* name, const char* mode, FILE* f);
/* Open the specified file and fill the descriptor values into f */
FILE* _fdesc (void);