try to make sure compiler/include/mmakefile is always refreshed correctly.
[AROS.git] / workbench / tools / SysExplorer / cpuspecific.h
blob87f258b122b5ec4cd735e13211245e18518f030a
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(char *buffer, LONG bufsize, ULONG i, APTR ProcessorBase);
17 #else
18 #define PrintCPUSpecificInfo(b, s, n, base)
19 #endif