diff options
Diffstat (limited to 'opcodes/i386-opc.h')
-rw-r--r-- | opcodes/i386-opc.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h index ce2a1a5..64bb5c3 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -271,6 +271,12 @@ enum CpuWideKL, /* HRESET instruction required */ CpuHRESET, + /* INVLPGB instructions required */ + CpuINVLPGB, + /* TLBSYNC instructions required */ + CpuTLBSYNC, + /* SNP instructions required */ + CpuSNP, /* 64bit support required */ Cpu64, /* Not supported in the 64bit mode */ @@ -414,6 +420,9 @@ typedef union i386_cpu_flags unsigned int cpukl:1; unsigned int cpuwidekl:1; unsigned int cpuhreset:1; + unsigned int cpuinvlpgb:1; + unsigned int cputlbsync:1; + unsigned int cpusnp:1; unsigned int cpu64:1; unsigned int cpuno64:1; #ifdef CpuUnused |