summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2008-10-27 20:00:09 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2008-10-27 20:00:09 (GMT)
commit2e5893f9261ba59e06fadcc6ddfa9a1253e286b3 (patch)
tree8197f6419812e7c36c28d6849ced3e37e8926539 /ChangeLog
parent197933fdf469ab9b8897b33c51809c128f1e3c03 (diff)
Extended the current opcode support (0x01, 0x72, 0x73, 0x88, 0xd3, 0xf7, 0xfc, 0xb6 and 0xbe).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@38 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
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.