2
0

cpuinfo.pas 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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 = double;
  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.
  37. {
  38. Copyright (c) 1998-2002 by the Free Pascal development team
  39. Basic Processor information for the Generic CPU
  40. This file is used by PPUDump program from utils subdirectory.
  41. See the file COPYING.FPC, included in this distribution,
  42. for details about the copyright.
  43. This program is distributed in the hope that it will be useful,
  44. but WITHOUT ANY WARRANTY; without even the implied warranty of
  45. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  46. **********************************************************************}
  47. Unit CPUInfo;
  48. Interface
  49. uses
  50. globtype;
  51. Type
  52. bestreal = double;
  53. ts32real = single;
  54. ts64real = double;
  55. ts80real = type extended;
  56. ts128real = type extended;
  57. ts64comp = comp;
  58. pbestreal=^bestreal;
  59. { possible supported processors for this target }
  60. tcputype =
  61. (cpu_none
  62. );
  63. Type
  64. tfputype =
  65. (fpu_none,
  66. fpu_soft
  67. );
  68. Const
  69. cputypestr : array[tcputype] of string[8] = ('none');
  70. fputypestr : array[tfputype] of string[6] = ('none','soft');
  71. Implementation
  72. end.
  73. {
  74. Copyright (c) 1998-2002 by the Free Pascal development team
  75. Basic Processor information for the Generic CPU
  76. This file is used by PPUDump program from utils subdirectory.
  77. See the file COPYING.FPC, included in this distribution,
  78. for details about the copyright.
  79. This program is distributed in the hope that it will be useful,
  80. but WITHOUT ANY WARRANTY; without even the implied warranty of
  81. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  82. **********************************************************************}
  83. Unit CPUInfo;
  84. Interface
  85. uses
  86. globtype;
  87. Type
  88. bestreal = double;
  89. ts32real = single;
  90. ts64real = double;
  91. ts80real = type extended;
  92. ts128real = type extended;
  93. ts64comp = comp;
  94. pbestreal=^bestreal;
  95. { possible supported processors for this target }
  96. tcputype =
  97. (cpu_none
  98. );
  99. Type
  100. tfputype =
  101. (fpu_none,
  102. fpu_soft
  103. );
  104. Const
  105. cputypestr : array[tcputype] of string[8] = ('none');
  106. fputypestr : array[tfputype] of string[6] = ('none','soft');
  107. Implementation
  108. end.