cpuinfo.pas 763 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. $Id$
  3. This file is part of the Free Pascal compiler
  4. Copyright (c) 1998-2000 by Florian Klaempfl
  5. Basic Processor information for i386
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. Unit CPUInfo;
  13. Interface
  14. Type
  15. { Architecture word - Native unsigned type }
  16. {$ifdef FPC}
  17. AWord = DWord;
  18. {$else FPC}
  19. AWord = Longint;
  20. {$endif FPC}
  21. Const
  22. { Size of native extended type }
  23. extended_size = 10;
  24. Implementation
  25. end.