summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2008-07-29 22:31:55 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2008-07-29 22:31:55 (GMT)
commit57758c2cd11938e3e4c6e45b983cee4c2269ff44 (patch)
treeade6e434f0a5e68dec379c20432a09dd1cc75a1a /ChangeLog
parent4d004094424bb1fc52082f2e442c4c43a5525fe1 (diff)
Loaded the executable part of an ELF file.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@10 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog42
1 files changed, 42 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2e95604..202b23d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,45 @@
+2008-07-30 Cyrille Bagard <nocbos@gmail.com>
+
+ * src/arch/x86/instruction.h:
+ Register new opcodes.
+
+ * src/arch/x86/Makefile.am:
+ Add op_(dec|hlt|inc|pop|push).c to libarchx86_a_SOURCES.
+
+ * src/arch/x86/opcodes.h:
+ Register new opcodes.
+
+ * src/arch/x86/op_dec.c:
+ Register this new opcode.
+
+ * src/arch/x86/operand.c:
+ * src/arch/x86/operand.h:
+ Fix a mistake: define a base when reading the target register.
+
+ * src/arch/x86/op_hlt.c:
+ * src/arch/x86/op_inc.c:
+ Register these new opcodes.
+
+ * src/arch/x86/op_mov.c:
+ Update the call to x86_create_reg1632_operand().
+
+ * src/arch/x86/op_nop.c:
+ Typo.
+
+ * src/arch/x86/op_pop.c:
+ * src/arch/x86/op_push.c:
+ Register these new opcodes.
+
+ * src/arch/x86/processor.c:
+ Register the new opcodes and fix a bug with X86_OP_MOV_CX (s/D/C).
+
+ * src/binary.c:
+ Load the content of the file '/tmp/hello'.
+
+ * src/format/elf/format_elf.c:
+ * src/format/elf/format_elf.h:
+ Look for the executable part of an ELF file.
+
2008-07-29 Cyrille Bagard <nocbos@gmail.com>
* src/binary.c: