in the latest intel docs PCOMMIT CPUID bit doesn't exists anymore

This commit is contained in:
Stanislav Shwartsman 2016-10-02 11:54:19 +00:00
parent 42b0714992
commit 239f793f37

View File

@ -315,7 +315,7 @@ typedef bx_cpuid_t* (*bx_create_cpuid_method)(BX_CPU_C *cpu);
// [19:19] ADCX/ADOX instructions support
// [20:20] SMAP: Supervisor Mode Access Prevention
// [21:21] AVX512IFMA52 instructions support
// [22:22] PCOMMIT instruction
// [22:22] Reserved
// [23:23] CLFLUSHOPT instruction
// [24:24] CLWB instruction
// [25:25] Intel Processor Trace
@ -348,7 +348,7 @@ typedef bx_cpuid_t* (*bx_create_cpuid_method)(BX_CPU_C *cpu);
#define BX_CPUID_EXT3_ADX (1 << 19)
#define BX_CPUID_EXT3_SMAP (1 << 20)
#define BX_CPUID_EXT3_AVX512IFMA52 (1 << 21)
#define BX_CPUID_EXT3_PCOMMIT (1 << 22)
#define BX_CPUID_EXT3_RESERVED22 (1 << 22)
#define BX_CPUID_EXT3_CLFLUSHOPT (1 << 23)
#define BX_CPUID_EXT3_CLWB (1 << 24)
#define BX_CPUID_EXT3_PROCESSOR_TRACE (1 << 25)