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
alsa.audio: add debug logs
[AROS.git]
/
workbench
/
tools
/
ShowConfig
/
cpuspecific.h
blob
ce8ad3f3bd3b23668bba2c5774796c2cd8f15f53
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
(
ULONG i
,
APTR ProcessorBase
);
17
#else
18
#define PrintCPUSpecificInfo(n, base)
19
#endif