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

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

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 */