about summary refs log tree commit diff stats
path: root/src/tools
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-05-28 10:42:41 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-05-28 10:42:41 +0200
commitb9f5929439ab5e0ebf9d64b2dc2659a9a018f19d (patch)
treeabd27a75f28e1a50caf99716ca76b7f1184c125d /src/tools
parent3dc396a64775a0aa8aae55513eda0d326cb50080 (diff)
downloadbox64-b9f5929439ab5e0ebf9d64b2dc2659a9a018f19d.tar.gz
box64-b9f5929439ab5e0ebf9d64b2dc2659a9a018f19d.zip
[INTERPRETER] More avx, avx2 and vaes opcodes
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/my_cpuid.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/my_cpuid.c b/src/tools/my_cpuid.c
index 2ed0e3a6..7c54a379 100644
--- a/src/tools/my_cpuid.c
+++ b/src/tools/my_cpuid.c
@@ -325,6 +325,7 @@ void my_cpuid(x64emu_t* emu, uint32_t tmp32u)
                         //1<<3 |  // BMI1 
                         box64_avx2<<5 |  //AVX2
                         //1<<8 | //BMI2
+                        box64_avx2<<9 | //VAES
                         1<<29|  // SHA extension
                         0;
             } else {R_EAX = R_ECX = R_EBX = R_EDX = 0;}