mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-09 12:52:34 +02:00
36 lines
777 B
ObjectPascal
36 lines
777 B
ObjectPascal
{
|
|
$Id$
|
|
This file is part of the Free Pascal run time library.
|
|
Copyright (c) 1998-2000 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
|
|
{ Architecture word - Native unsigned type }
|
|
{$ifdef FPC}
|
|
AWord = Qword;
|
|
{$else FPC}
|
|
AWord = Longint;
|
|
{$endif FPC}
|
|
|
|
Const
|
|
{ Size of native extended type }
|
|
extended_size = 16;
|
|
|
|
Implementation
|
|
|
|
end.
|