Fixes in disasm

This commit is contained in:
Stanislav Shwartsman 2008-10-01 09:10:54 +00:00
parent 91ecba9b91
commit c09e2b6418
2 changed files with 2 additions and 3 deletions

View File

@ -44,8 +44,7 @@
#define IA_AES 0x01000000 /* AES instruction */
#define IA_AVX 0x02000000 /* AVX instruction */
#define IA_MOVBE 0x04000000 /* MOVBE Intel Atom(R) instruction */
#define IA_LEGACY 0x40000000 /* legacy instruction */
#define IA_UNDOCUMENTED 0x80000000 /* instruction undocumented */
#define IA_LEGACY 0x80000000 /* legacy instruction */
/* general purpose bit register */
enum {

View File

@ -921,7 +921,7 @@ Ia_popw_SS = { "pop", "popw", SS, XX, XX, XX, 0 },
Ia_por_Pq_Qq = { "por", "por", Pq, Qq, XX, XX, IA_MMX },
Ia_por_Vdq_Wdq = { "por", "por", Vdq, Wdq, XX, XX, IA_SSE2 },
Ia_prefetch = { "prefetch (3dnow!)", "prefetch (3dnow!)", Mb, XX, XX, XX, IA_3DNOW | IA_X86_64 },
Ia_prefetch_hint = { "prefetch_hint", "prefetch_hint", Mb, XX, XX, XX, IA_SSE | IA_UNDOCUMENTED },
Ia_prefetch_hint = { "prefetch_hint", "prefetch_hint", Mb, XX, XX, XX, IA_SSE },
Ia_prefetchnta = { "prefetchnta", "prefetchnta", Mb, XX, XX, XX, IA_SSE },
Ia_prefetcht0 = { "prefetcht0", "prefetcht0", Mb, XX, XX, XX, IA_SSE },
Ia_prefetcht1 = { "prefetcht1", "prefetcht1", Mb, XX, XX, XX, IA_SSE },