summaryrefslogtreecommitdiff
path: root/src/arch/x86/instruction.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2008-09-06 21:30:01 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2008-09-06 21:30:01 (GMT)
commit4946ffe81e3edf35061a07cf4425f9accff11888 (patch)
treeb27b61d398195c017a49bfa61ab6c8badc417b98 /src/arch/x86/instruction.h
parentf14993aac5b0b4b7ae174f27e4d1f0f540057c58 (diff)
Added more support for lea and push opcodes.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@25 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/x86/instruction.h')
-rw-r--r--src/arch/x86/instruction.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/x86/instruction.h b/src/arch/x86/instruction.h
index f8c2f7d..1a9b6d4 100644
--- a/src/arch/x86/instruction.h
+++ b/src/arch/x86/instruction.h
@@ -90,6 +90,8 @@ typedef enum _X86Opcodes
X86_OP_MOV_FROM_CONTENT1632, /* mov ([0x66] 0x8b) */
+ X86_OP_LEA, /* lea ([0x66] 0x8d) */ /* 66 ? */
+
X86_OP_NOP, /* nop (0x90) */
X86_OP_MOV_E_AX, /* mov ([0x66] 0xb8) */
@@ -113,6 +115,8 @@ typedef enum _X86Opcodes
X86_OP_HLT, /* hlt (0xf4) */
+ X86_OP_PUSH_CONTENT, /* push ([0x66] 0xff) */ /* 66 ? */
+
X86_OP_COUNT
} X86Opcodes;