Fixed some typos in comments and messages.
[AROS.git] / workbench / tools / ShowConfig / cpuspecific.h
blobce8ad3f3bd3b23668bba2c5774796c2cd8f15f53
1 #ifdef __x86_64__
2 #define __x86__
3 #define HAS_CPU_SPECIFIC
4 #endif
6 #ifdef __i386__
7 #define __x86__
8 #define HAS_CPU_SPECIFIC
9 #endif
11 #ifdef __arm__
12 #define HAS_CPU_SPECIFIC
13 #endif
15 #ifdef HAS_CPU_SPECIFIC
16 void PrintCPUSpecificInfo(ULONG i, APTR ProcessorBase);
17 #else
18 #define PrintCPUSpecificInfo(n, base)
19 #endif