diff --git a/docs/intfns.txt b/docs/intfns.txt index de04dc0..ccc2396 100644 --- a/docs/intfns.txt +++ b/docs/intfns.txt @@ -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 diff --git a/docs/readme.cvs b/docs/readme.cvs index de51b31..c275bb0 100644 --- a/docs/readme.cvs +++ b/docs/readme.cvs @@ -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. diff --git a/kernel/inthndlr.c b/kernel/inthndlr.c index f25b309..6797c61 100644 --- a/kernel/inthndlr.c +++ b/kernel/inthndlr.c @@ -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; }