Clean up and Release

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@9 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Jim Tabor 2000-05-09 00:30:11 +00:00
parent d7060f0ace
commit c80712f088
3 changed files with 16 additions and 10 deletions

View File

@ -140,10 +140,10 @@ int 21 Description State Ver Status
66h Code Page Functions active 3.30 supported 66h Code Page Functions active 3.30 supported
67h Set Maximum Handle Count active 3.30 supported 67h Set Maximum Handle Count active 3.30 supported
68h Commit File active 3.30 dummy func 68h Commit File active 3.30 dummy func
69h GET/SET DISK SERIAL NUMBER active 4.00 not supported 69h GET/SET DISK SERIAL NUMBER active 4.00 supported
6ah COMMIT FILE (same as 68h) active 4.00 not supported 6ah COMMIT FILE (same as 68h) active 4.00 not supported
6bh NULL FUNCTION active 5.00 not supported 6bh NULL FUNCTION active 5.00 not supported
6ch Extended Open/Create active 4.00 not supported 6ch Extended Open/Create active 4.00 supported
71h LONG FILENAME FUNCTIONS active 7.00 not supported 71h LONG FILENAME FUNCTIONS active 7.00 not supported
int 22: Program Termination Address. int 22: Program Termination Address.
@ -195,6 +195,9 @@ See COPYING in DOS-C root directory for license.
$Id$ $Id$
$Log$ $Log$
Revision 1.3 2000/05/09 00:29:50 jimtabor
Clean up and Release
Revision 1.2 2000/05/08 04:27:48 jimtabor Revision 1.2 2000/05/08 04:27:48 jimtabor
Update CVS to 2020 Update CVS to 2020

View File

@ -1,15 +1,14 @@
You can check out the latest code (from a UNIX type machine) using You can check out the latest code (from a UNIX type machine) using
CVS as follows: CVS as follows:
cvs -d :pserver:guest@gcfl.net:/home/cvsroot login cvs -z3 -d:pserver:anonymous@cvs.freedos.sourceforge.net:/home/cvsroot login
Password: guest Password: Press the Enter key.
Then, to get the kernel code: Then, to get the kernel code:
cvs -d :pserver:guest@gcfl.net:/home/cvsroot checkout fdkernel cvs -z3 -d:pserver:anonymous@cvs.freedos.sourceforge.net:/home/cvsroot checkout
kernel
To get the FreeCom code:
cvs -d :pserver:guest@gcfl.net:/home/cvsroot checkout FreeCom
You can also view the CVS code from the web at You can also view the CVS code from the web at
http://www.gcfl.net/cgi-bin/cvsweb http://freedos.sourceforge.net/
Go to the CVS page.

View File

@ -36,6 +36,9 @@ BYTE *RcsId = "$Id$";
/* /*
* $Log$ * $Log$
* Revision 1.3 2000/05/09 00:30:11 jimtabor
* Clean up and Release
*
* Revision 1.2 2000/05/08 04:30:00 jimtabor * Revision 1.2 2000/05/08 04:30:00 jimtabor
* Update CVS to 2020 * Update CVS to 2020
* *
@ -1578,6 +1581,7 @@ dispatch:
r->AL = 0xFF; r->AL = 0xFF;
break; break;
#if 0
/* Extended Open-Creat, not fully functional.*/ /* Extended Open-Creat, not fully functional.*/
case 0x6c: case 0x6c:
@ -1603,7 +1607,7 @@ dispatch:
r->FLAGS &= ~FLG_CARRY; r->FLAGS &= ~FLG_CARRY;
} }
break; break;
#endif
default: default:
goto error_invalid; goto error_invalid;
} }