cpuinfo.pas 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. Copyright (c) 1998-2002 by the Free Pascal development team
  3. Basic Processor information for the Generic CPU
  4. This file is used by PPUDump program from utils subdirectory.
  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. uses
  14. globtype;
  15. Type
  16. bestreal = extended;
  17. ts32real = single;
  18. ts64real = double;
  19. ts80real = type extended;
  20. ts128real = type extended;
  21. ts64comp = comp;
  22. pbestreal=^bestreal;
  23. { possible supported processors for this target }
  24. tcputype =
  25. (cpu_none
  26. );
  27. Type
  28. tfputype =
  29. (fpu_none,
  30. fpu_soft
  31. );
  32. Const
  33. cputypestr : array[tcputype] of string[8] = ('none');
  34. fputypestr : array[tfputype] of string[6] = ('none','soft');
  35. Implementation
  36. end.