cpuinfo.pas 716 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. $Id$
  3. Copyright (c) 1998-2000 by the Free Pascal development team
  4. Basic Processor information
  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. Unit CPUInfo;
  12. Interface
  13. Type
  14. { Architecture word - Native unsigned type }
  15. {$ifdef FPC}
  16. AWord = Dword;
  17. {$else FPC}
  18. AWord = Longint;
  19. {$endif FPC}
  20. Const
  21. { Size of native extended type }
  22. extended_size = 8;
  23. Implementation
  24. end.