From: George H. <geo...@us...> - 2006-10-02 11:44:35
|
Update of /cvsroot/win32forth/win32forth/doc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31390/win32forth/doc Modified Files: p-float.htm Log Message: gah:Corrected doc. Index: p-float.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/doc/p-float.htm,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** p-float.htm 29 Aug 2006 10:31:46 -0000 1.20 --- p-float.htm 2 Oct 2006 11:44:29 -0000 1.21 *************** *** 1,6 **** ! <html> <head> ! <meta http-equiv="Content-Language" content="en-gb"> ! <meta name="GENERATOR" content="dexh00"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> --- 1,8 ---- ! <?xml version="1.0"?> ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ! "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> ! <meta name="GENERATOR" content="dexh v03"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> *************** *** 20,28 **** wordsets as well as a number of useful extra words. It uses a separate floating-point stack (implemented in the USER area for task safety). ! </p><p>The floating-point words can be compiled as 8 bit (for speed) or 10 bit (for accuracy). ! The default when the system is built is 8 bit, but can be set to 10 bit (in src\extend.f) by altering the CONSTANT B/FLOAT and re-extending the system (using setup.exe). If the CONSTANT is not defined then the file automatically creates it and compiles ! the code for 10 bit floats. </p><p>The only error that is thrown is for FP stack Underflow (error code -45); arithmetic operations which produce values too large to be represented use infinity, --- 22,30 ---- wordsets as well as a number of useful extra words. It uses a separate floating-point stack (implemented in the USER area for task safety). ! </p><p>The floating-point words can be compiled as 8 byte (for speed) or 10 byte (for accuracy). ! The default when the system is built is 8 byte, but can be set to 10 byte (in src\extend.f) by altering the CONSTANT B/FLOAT and re-extending the system (using setup.exe). If the CONSTANT is not defined then the file automatically creates it and compiles ! the code for 10 byte floats. </p><p>The only error that is thrown is for FP stack Underflow (error code -45); arithmetic operations which produce values too large to be represented use infinity, |