diff options
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/op_helper.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target-i386/op_helper.c b/target-i386/op_helper.c index 644598a4b9..ebb5824544 100644 --- a/target-i386/op_helper.c +++ b/target-i386/op_helper.c @@ -2037,10 +2037,10 @@ void helper_cpuid(void) EDX = 0; break; case 0x8000000A: - EAX = 0x00000001; - EBX = 0; + EAX = 0x00000001; /* SVM Revision */ + EBX = 0x00000010; /* nr of ASIDs */ ECX = 0; - EDX = 0; + EDX = 0; /* optional features */ break; default: /* reserved values: zero */ |