diff options
Diffstat (limited to 'opcodes/i386-opc.h')
-rw-r--r-- | opcodes/i386-opc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h index 21f33a9..bfb3ce4 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -120,6 +120,8 @@ enum CpuTBM, /* MOVBE Instruction support required */ CpuMovbe, + /* CMPXCHG16B instruction support required. */ + CpuCX16, /* EPT Instructions required */ CpuEPT, /* RDTSCP Instruction support required */ @@ -217,6 +219,7 @@ typedef union i386_cpu_flags unsigned int cpubmi:1; unsigned int cputbm:1; unsigned int cpumovbe:1; + unsigned int cpucx16:1; unsigned int cpuept:1; unsigned int cpurdtscp:1; unsigned int cpufsgsbase:1; |