From 3aa12a52eb7185a6675f6d59c63e31b94b4f1c0f Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sat, 28 Aug 2021 16:46:59 +0200 Subject: Added AES-NI cpu extension support ([DYNAREC] too, using AES extension if available) --- src/tools/my_cpuid.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/tools') diff --git a/src/tools/my_cpuid.c b/src/tools/my_cpuid.c index e3f716be..2cb4b92c 100644 --- a/src/tools/my_cpuid.c +++ b/src/tools/my_cpuid.c @@ -53,6 +53,7 @@ void my_cpuid(x64emu_t* emu, uint32_t tmp32u) | 1<<9 // SSSE3 | 1<<12 // fma | 1<<13 // cx16 (cmpxchg16) + | 1<<25 // aesni ; break; case 0x2: // TLB and Cache info. Sending 1st gen P4 info... -- cgit 1.4.1