diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-03-10 13:49:58 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-03-10 13:49:58 +0100 |
| commit | 411aecde6f16a79eda184f5c03cf21dcf2355b99 (patch) | |
| tree | 2bc0e6357a3c57ce29c9abc4552ab9edb6a96578 /src/tools | |
| parent | e89b93285e9a81cef73913306a1e1a7f17cc28b0 (diff) | |
| download | box64-411aecde6f16a79eda184f5c03cf21dcf2355b99.tar.gz box64-411aecde6f16a79eda184f5c03cf21dcf2355b99.zip | |
Don't expose BMI1 for now, it's not really supported
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/my_cpuid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/my_cpuid.c b/src/tools/my_cpuid.c index c4c37d37..145f55f4 100644 --- a/src/tools/my_cpuid.c +++ b/src/tools/my_cpuid.c @@ -312,7 +312,7 @@ void my_cpuid(x64emu_t* emu, uint32_t tmp32u) if(R_ECX==0) { R_EAX = 0; R_EBX = 0 | - 1<<3 | // BMI1 + //1<<3 | // BMI1 //1<<8 | //BMI2 1<<29; // SHA extension } else {R_EAX = R_ECX = R_EBX = R_EDX = 0;} |