home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 5.ddi / MWHC.005 / O2 < prev    next >
Encoding:
Text File  |  1992-12-09  |  660 b   |  18 lines

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