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
67h Set Maximum Handle Count active 3.30 supported
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
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
int 22: Program Termination Address.
@ -195,6 +195,9 @@ See COPYING in DOS-C root directory for license.
$Id$
$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
Update CVS to 2020

View File

@ -1,15 +1,14 @@
You can check out the latest code (from a UNIX type machine) using
CVS as follows:
cvs -d :pserver:guest@gcfl.net:/home/cvsroot login
Password: guest
cvs -z3 -d:pserver:anonymous@cvs.freedos.sourceforge.net:/home/cvsroot login
Password: Press the Enter key.
Then, to get the kernel code:
cvs -d :pserver:guest@gcfl.net:/home/cvsroot checkout fdkernel
To get the FreeCom code:
cvs -d :pserver:guest@gcfl.net:/home/cvsroot checkout FreeCom
cvs -z3 -d:pserver:anonymous@cvs.freedos.sourceforge.net:/home/cvsroot checkout
kernel
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$
* Revision 1.3 2000/05/09 00:30:11 jimtabor
* Clean up and Release
*
* Revision 1.2 2000/05/08 04:30:00 jimtabor
* Update CVS to 2020
*
@ -1578,6 +1581,7 @@ dispatch:
r->AL = 0xFF;
break;
#if 0
/* Extended Open-Creat, not fully functional.*/
case 0x6c:
@ -1603,7 +1607,7 @@ dispatch:
r->FLAGS &= ~FLG_CARRY;
}
break;
#endif
default:
goto error_invalid;
}