summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog41
1 files changed, 41 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c251af9..e4d24d6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,46 @@
2008-10-27 Cyrille Bagard <nocbos@gmail.com>
+ * src/arch/x86/instruction.h:
+ Register some new instructions.
+
+ * src/arch/x86/Makefile.am:
+ Add op_cld, op_movsx and op_not to libarchx86_a_SOURCES.
+
+ * src/arch/x86/op_add.c:
+ Extend the current opcode support.
+
+ * rc/arch/x86/op_cld.c:
+ New entry: handle a new opcode.
+
+ * src/arch/x86/opcodes.h:
+ Register some new instructions.
+
+ * src/arch/x86/operand.c:
+ * src/arch/x86/operand.h:
+ Accept the 'cl' register as operand.
+
+ * src/arch/x86/op_jump.c:
+ * src/arch/x86/op_mov.c:
+ Extend the current opcode support.
+
+ * src/arch/x86/op_movsx.c:
+ New entry: handle a new opcode.
+
+ * src/arch/x86/op_movzx.c:
+ Extend the current opcode support.
+
+ * src/arch/x86/op_not.c:
+ New entry: handle a new opcode.
+
+ * src/arch/x86/op_shl.c:
+ Extend the current opcode support.
+
+ * src/arch/x86/processor.c:
+ Extend the current opcode support (0x01, 0x72, 0x73, 0x88, 0xd3, 0xf7,
+ 0xfc, 0xb6 and 0xbe).
+
+2008-10-27 Cyrille Bagard <nocbos@gmail.com>
+
* src/arch/processor.c:
Take care here of decoding failures.