cpuh.inc 685 B

12345678910111213141516171819202122232425
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2016 by the Free Pascal development team.
  4. CPU specific system unit header file
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. {$ifdef FPUFD}
  12. type
  13. TNativeFPUControlWord = record
  14. cw: sizeuint;
  15. rndmode: dword;
  16. end;
  17. {$else}
  18. {$define FPC_SYSTEM_FPUCW_IMMUTABLE}
  19. {$endif}