mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 08:29:29 +02:00
+ initial revision
This commit is contained in:
parent
b6cf3b2d68
commit
be3155fdde
40
compiler/cpuinfo.pas
Normal file
40
compiler/cpuinfo.pas
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
$Id$
|
||||
This file is part of the Free Pascal run time library.
|
||||
Copyright (c) 1999 by the Free Pascal development team
|
||||
|
||||
Basic Processor information
|
||||
|
||||
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
|
||||
|
||||
Type
|
||||
{$ifdef FPC}
|
||||
AWord = dword;
|
||||
{$else FPC}
|
||||
AWord = Longint;
|
||||
{$endif FPC}
|
||||
|
||||
Const
|
||||
{ Size of native extended type }
|
||||
extended_size = 10;
|
||||
|
||||
Implementation
|
||||
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.1 1999-08-04 11:13:38 florian
|
||||
+ initial revision
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user