Changeset 76cec1e in mainline for arch/ia32/src/cpu/cpu.c
- Timestamp:
- 2005-07-15T21:57:30Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b4a4c5e3
- Parents:
- e41c47e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/cpu/cpu.c
re41c47e r76cec1e 109 109 * Check for AMD processor. 110 110 */ 111 if (info.cpuid_ebx==AMD_CPUID_EBX && 112 info.cpuid_ecx==AMD_CPUID_ECX && 113 info.cpuid_edx==AMD_CPUID_EDX) { 114 111 if (info.cpuid_ebx==AMD_CPUID_EBX && info.cpuid_ecx==AMD_CPUID_ECX && info.cpuid_edx==AMD_CPUID_EDX) { 115 112 CPU->arch.vendor = VendorAMD; 116 113 } … … 119 116 * Check for Intel processor. 120 117 */ 121 if (info.cpuid_ebx==INTEL_CPUID_EBX && 122 info.cpuid_ecx==INTEL_CPUID_ECX && 123 info.cpuid_edx==INTEL_CPUID_EDX) { 124 118 if (info.cpuid_ebx==INTEL_CPUID_EBX && info.cpuid_ecx==INTEL_CPUID_ECX && info.cpuid_edx==INTEL_CPUID_EDX) { 125 119 CPU->arch.vendor = VendorIntel; 126 127 120 } 128 121
Note:
See TracChangeset
for help on using the changeset viewer.