repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
grub2: bring back build of aros-side grub2 tools
[AROS.git]
/
workbench
/
tools
/
SysExplorer
/
cpuspecific.h
blob
87f258b122b5ec4cd735e13211245e18518f030a
1
#ifdef __x86_64__
2
#define __x86__
3
#define HAS_CPU_SPECIFIC
4
#endif
5
6
#ifdef __i386__
7
#define __x86__
8
#define HAS_CPU_SPECIFIC
9
#endif
10
11
#ifdef __arm__
12
#define HAS_CPU_SPECIFIC
13
#endif
14
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