Update of /cvsroot/win32forth/win32forth/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31794/win32forth/src
Modified Files:
FLOAT.F
Log Message:
gah:Corrected dexing.
Index: FLOAT.F
===================================================================
RCS file: /cvsroot/win32forth/win32forth/src/FLOAT.F,v
retrieving revision 1.45
retrieving revision 1.46
diff -C2 -d -r1.45 -r1.46
*** FLOAT.F 19 May 2006 15:46:14 -0000 1.45
--- FLOAT.F 2 Oct 2006 11:45:34 -0000 1.46
***************
*** 45,53 ****
\ ** stack (implemented in the USER area for task safety).
! \ *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 The only error that is thrown is for FP stack Underflow (error code -45);
--- 45,53 ----
\ ** stack (implemented in the USER area for task safety).
! \ *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 The only error that is thrown is for FP stack Underflow (error code -45);
|