home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c220 / 4.ddi / LIB / SRC / 87.PF next >
Encoding:
Text File  |  1990-12-16  |  582 b   |  16 lines

  1. pragma C_include('implement.pf');
  2.  
  3. package I87;
  4.    pragma Data(Import);
  5.    -- This variable is True if an 8087 or 287 exists at run-time.
  6.    -- If True the floating-point emulatuion library will use the chip rather
  7.    -- than emulating floating-point instructions.  You can prevent the
  8.    -- use of the chip by setting this variable to False.
  9.    var _87_exists: Boolean;
  10.    -- This is true if we have a 387.
  11.    var _387_exists: Boolean;
  12.    pragma Data;
  13.    pragma Alias(_87_exists,Implement.RTE || '8087');
  14.    pragma Alias(_387_exists,Implement.RTE || '387');
  15.    end;
  16.