Rev 534 | Rev 1187 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 534 | Rev 625 | ||
|---|---|---|---|
| Line 123... | Line 123... | ||
| 123 | 123 | ||
| 124 | 124 | ||
| 125 | void cpu_identify(void) |
125 | void cpu_identify(void) |
| 126 | { |
126 | { |
| 127 | cpu_info_t info; |
127 | cpu_info_t info; |
| 128 | int i; |
- | |
| 129 | 128 | ||
| 130 | CPU->arch.vendor = VendorUnknown; |
129 | CPU->arch.vendor = VendorUnknown; |
| 131 | if (has_cpuid()) { |
130 | if (has_cpuid()) { |
| 132 | cpuid(0, &info); |
131 | cpuid(0, &info); |
| 133 | 132 | ||