summaryrefslogtreecommitdiffstats
path: root/cpudetect.h
blob: 0fd5ec9e72f316313aff2e90868db490cae15a1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifdef ARCH_X86

#define CPUTYPE_I386	0
#define CPUTYPE_I486	1
#define CPUTYPE_I586	2

typedef struct cpucaps_s {
	int cpuType;
	int hasMMX;
	int hasMMX2;
	int has3DNow;
	int has3DNowExt;
	int hasSSE;
	int hasSSE2;
} CpuCaps;

extern CpuCaps gCpuCaps;

void GetCpuCaps( CpuCaps *caps);

#endif /* ARCH_X86 */