mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-07 12:50:31 +02:00
+ initial revision
This commit is contained in:
parent
c512d38256
commit
2359c7c013
35
compiler/new/i386/cpuinfo.pas
Normal file
35
compiler/new/i386/cpuinfo.pas
Normal file
@ -0,0 +1,35 @@
|
||||
{
|
||||
$Id$
|
||||
This file is part of the Free Pascal compiler
|
||||
Copyright (c) 1999 by Florian Klaempfl
|
||||
|
||||
Basic Processor information for i386
|
||||
|
||||
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 = DWord;
|
||||
{$else FPC}
|
||||
AWord = Longint;
|
||||
{$endif FPC}
|
||||
|
||||
Const
|
||||
{ Size of native extended type }
|
||||
extended_size = 10;
|
||||
|
||||
Implementation
|
||||
|
||||
end.
|
Loading…
Reference in New Issue
Block a user