123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- {
- Copyright (c) 1998-2002 by the Free Pascal development team
- Basic Processor information for the Generic CPU
- This file is used by PPUDump program from utils subdirectory.
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- **********************************************************************}
- Unit CPUInfo;
- Interface
- uses
- globtype;
- Type
- bestreal = double;
- ts32real = single;
- ts64real = double;
- ts80real = type extended;
- ts128real = type extended;
- ts64comp = comp;
- pbestreal=^bestreal;
- { possible supported processors for this target }
- tcputype =
- (cpu_none
- );
- Type
- tfputype =
- (fpu_none,
- fpu_soft
- );
- Const
- cputypestr : array[tcputype] of string[8] = ('none');
- fputypestr : array[tfputype] of string[6] = ('none','soft');
- Implementation
- end.
- {
- Copyright (c) 1998-2002 by the Free Pascal development team
- Basic Processor information for the Generic CPU
- This file is used by PPUDump program from utils subdirectory.
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- **********************************************************************}
- Unit CPUInfo;
- Interface
- uses
- globtype;
- Type
- bestreal = double;
- ts32real = single;
- ts64real = double;
- ts80real = type extended;
- ts128real = type extended;
- ts64comp = comp;
- pbestreal=^bestreal;
- { possible supported processors for this target }
- tcputype =
- (cpu_none
- );
- Type
- tfputype =
- (fpu_none,
- fpu_soft
- );
- Const
- cputypestr : array[tcputype] of string[8] = ('none');
- fputypestr : array[tfputype] of string[6] = ('none','soft');
- Implementation
- end.
- {
- Copyright (c) 1998-2002 by the Free Pascal development team
- Basic Processor information for the Generic CPU
- This file is used by PPUDump program from utils subdirectory.
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- **********************************************************************}
- Unit CPUInfo;
- Interface
- uses
- globtype;
- Type
- bestreal = double;
- ts32real = single;
- ts64real = double;
- ts80real = type extended;
- ts128real = type extended;
- ts64comp = comp;
- pbestreal=^bestreal;
- { possible supported processors for this target }
- tcputype =
- (cpu_none
- );
- Type
- tfputype =
- (fpu_none,
- fpu_soft
- );
- Const
- cputypestr : array[tcputype] of string[8] = ('none');
- fputypestr : array[tfputype] of string[6] = ('none','soft');
- Implementation
- end.
|