changeset 120 | 430dbec0c228 |
119:305d2ca32936 | 120:430dbec0c228 |
---|---|
1 /** |
|
2 * test/demos/lsflib/include/cpuid.h |
|
3 * Copyright (C) 2008 Markus Broeker |
|
4 */ |
|
5 |
|
6 #ifndef __CPUID_H__ |
|
7 #define __CPUID_H__ |
|
8 |
|
9 #include <memory.h> |
|
10 |
|
11 typedef unsigned long ULONG; |
|
12 |
|
13 char *get_cpu_brand (int); |
|
14 char *get_cpu_vendor (void); |
|
15 |
|
16 ULONG get_cpu_function (ULONG, ULONG *, ULONG *, ULONG *, ULONG *); |
|
17 |
|
18 #endif |