summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2008-08-03 15:35:43 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2008-08-03 15:35:43 (GMT)
commit1249cf6e2c0ed87e1c593e488beedbbfe153ff00 (patch)
tree0a92b85df9dabe76b34810071e0c1def906311da /ChangeLog
parentf0b80c6ab55ede4f8ab8ede757f1f8951512affa (diff)
Read registers from the ModR/M encoding.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@13 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog33
1 files changed, 33 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 66c77d7..8a8a99b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,36 @@
+2008-08-03 Cyrille Bagard <nocbos@gmail.com>
+
+ * src/arch/x86/instruction.h:
+ Remove all the identifiers for the prefix '0x66'.
+
+ * src/arch/x86/Makefile.am:
+ Add op_(adc|add|and|or|sbb|sub|xor).c to libarchx86_a_SOURCES.
+
+ * src/arch/x86/op_adc.c:
+ * src/arch/x86/op_add.c:
+ * src/arch/x86/op_and.c:
+ New entries: support more opcodes.
+
+ * src/arch/x86/opcodes.h:
+ Register the new opcodes.
+
+ * src/arch/x86/operand.c:
+ * src/arch/x86/operand.h:
+ Read registers from the ModR/M encoding.
+
+ * src/arch/x86/op_mov.c:
+ Support the 'mov' opcode from a register to another one.
+
+ * src/arch/x86/op_or.c:
+ * src/arch/x86/op_sbb.c:
+ * src/arch/x86/op_sub.c:
+ * src/arch/x86/op_xor.c:
+ New entries: support more opcodes.
+
+ * src/arch/x86/processor.c:
+ Handle opcode extension. Improve the way that instructions with prefix
+ are handled, and thus decrease the amount of lines of code.
+
2008-08-01 Cyrille Bagard <nocbos@gmail.com>
* src/arch/x86/instruction.h: