diff options
author | Gleb Natapov <gleb@redhat.com> | 2009-12-24 16:14:33 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2009-12-24 19:39:53 +0100 |
commit | c84bd4f104098861e162be848a00d64c1fa76ed4 (patch) | |
tree | a978beece551ea41554f8941cb686cf72cef7477 /target-i386 | |
parent | f21a59c224a6fdf7b30c3fe551fd93043e537f6c (diff) |
Intel CPUs starting from pentium have apic
Intel CPUs starting from pentium have apic. Lets advertise it.
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c index 730e396a69..c39a993902 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -106,7 +106,7 @@ typedef struct x86_def_t { #define I486_FEATURES (CPUID_FP87 | CPUID_VME | CPUID_PSE) #define PENTIUM_FEATURES (I486_FEATURES | CPUID_DE | CPUID_TSC | \ - CPUID_MSR | CPUID_MCE | CPUID_CX8 | CPUID_MMX) + CPUID_MSR | CPUID_MCE | CPUID_CX8 | CPUID_MMX | CPUID_APIC) #define PENTIUM2_FEATURES (PENTIUM_FEATURES | CPUID_PAE | CPUID_SEP | \ CPUID_MTRR | CPUID_PGE | CPUID_MCA | CPUID_CMOV | CPUID_PAT | \ CPUID_PSE36 | CPUID_FXSR) |