diff options
Diffstat (limited to 'src/arch/x86/instruction.h')
| -rw-r--r-- | src/arch/x86/instruction.h | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/src/arch/x86/instruction.h b/src/arch/x86/instruction.h index 1a9b6d4..38315d9 100644 --- a/src/arch/x86/instruction.h +++ b/src/arch/x86/instruction.h @@ -88,12 +88,18 @@ typedef enum _X86Opcodes      X86_OP_SUB8_REG1632,                    /* sub ([0x66] 0x83)           */      X86_OP_XOR8_REG1632,                    /* xor ([0x66] 0x83)           */ +    X86_OP_TEST_RM8,                        /* test ([0x66] 0x84)          */ +    X86_OP_TEST_RM1632,                     /* test ([0x66] 0x85)          */ +      X86_OP_MOV_FROM_CONTENT1632,            /* mov ([0x66] 0x8b)           */      X86_OP_LEA,                             /* lea ([0x66] 0x8d)           */   /* 66 ? */      X86_OP_NOP,                             /* nop (0x90)                  */ +    X86_OP_TEST_AL,                         /* test ([0x66] 0xa8)          */ +    X86_OP_TEST_E_AX,                       /* test ([0x66] 0xa9)          */ +      X86_OP_MOV_E_AX,                        /* mov ([0x66] 0xb8)           */      X86_OP_MOV_E_CX,                        /* mov ([0x66] 0xb9)           */      X86_OP_MOV_E_DX,                        /* mov ([0x66] 0xba)           */  | 
