home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_01 / HISPEED2.LZH / NEWDOC / 68881.DOC next >
Text File  |  1991-02-12  |  1KB  |  37 lines

  1. New for version 1.10B with 68881 support
  2.  
  3.  
  4. FPU support.
  5.  
  6. The Pascal runtime now supports the use of the 68881 or 68882 FPU
  7. (Floating Point Unit). 
  8.  
  9. Only Atari computers with the FPU placed in the memory area is
  10. supported using this version. The TT machine is not supported yet.
  11. The FPU on the TT is directly connected to the CPU. 
  12.  
  13. The compiler does not know any difference between the software
  14. emulator and the 68881 unit, it always generates the same code.
  15.  
  16. The runtime code does all the work. The first time the program tries
  17. to use the FPU, a test is done for the presence of the 68881.
  18. All the following calls goes directly to either the emulator or
  19. the 68881 unit. 
  20.  
  21.  
  22. New variables in the System unit.
  23.  
  24. Var 
  25.   FpuMode: ShortInt; { ZERO initial. MINUS when 68881 is used }
  26.  
  27. The FpuMode variable is used internal to keep track of what FPU to use.
  28. Do not change it. 
  29.  
  30.  
  31. Internal formats.
  32.  
  33. The software FPU emulator uses the same format as the 68881 for the
  34. data stored. Because of that there is no changes in how the data
  35. layout is done.
  36.  
  37.