summaryrefslogtreecommitdiff
path: root/src/arch/x86/instruction.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/instruction.h')
-rw-r--r--src/arch/x86/instruction.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/arch/x86/instruction.h b/src/arch/x86/instruction.h
index 38315d9..af4f7cf 100644
--- a/src/arch/x86/instruction.h
+++ b/src/arch/x86/instruction.h
@@ -97,7 +97,10 @@ typedef enum _X86Opcodes
X86_OP_NOP, /* nop (0x90) */
- X86_OP_TEST_AL, /* test ([0x66] 0xa8) */
+ X86_OP_MOV_MOFFS_TO_AL, /* mov (0xa0) */
+ X86_OP_MOV_MOFFS_TO_E_AX, /* mov ([0x66] 0xa1) */
+
+ X86_OP_TEST_AL, /* test (0xa8) */
X86_OP_TEST_E_AX, /* test ([0x66] 0xa9) */
X86_OP_MOV_E_AX, /* mov ([0x66] 0xb8) */