Initial revision
[AROS-Contrib.git] / development / compilers / freepascal / compiler / cpuinfo.pas
bloba2a566884bfb00615249cbcaf14ebf52cf9068b6
2 $Id$
3 Copyright (c) 1998-2000 by Florian Klaempfl
5 Basic Processor information
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 ****************************************************************************
23 Unit CPUInfo;
25 Interface
27 Type
28 {$ifdef FPC}
29 AWord = dword;
30 {$else FPC}
31 AWord = Longint;
32 {$endif FPC}
34 Const
35 { Size of native extended type }
36 extended_size = 10;
38 Implementation
40 end.
42 $Log$
43 Revision 1.1 2002/02/19 08:22:00 sasu
44 Initial revision
46 Revision 1.1 2000/07/13 06:29:48 michael
47 + Initial import
49 Revision 1.2 2000/01/07 01:14:23 peter
50 * updated copyright to 2000
52 Revision 1.1 1999/08/04 11:13:38 florian
53 + initial revision