summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-05-31 20:58:20 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-05-31 20:58:20 (GMT)
commit8724afdc73e0ddad86f46de1a3fbe0254575a76e (patch)
treede666b66e154c6c6453807d3fa4272efb6877a91 /ChangeLog
parent0b7d7f26c745ff0f52e9e483a0980351368ca824 (diff)
Supported a new architecture (MIPS).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@67 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog62
1 files changed, 62 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 48619cb..a722f65 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,65 @@
+09-05-31 Cyrille Bagard <nocbos@gmail.com>
+
+ * configure.ac:
+ Add the new Makefile from 'src/arch/mips' directory to AC_CONFIG_FILES.
+
+ * src/analysis/binary.c:
+ Support a new architecture (MIPS).
+
+ * src/arch/immediate.c:
+ Fix a bug when printing positive signed values.
+
+ * src/arch/instruction.c:
+ * src/arch/instruction.h:
+ Improve the way operands are handled.
+
+ * src/arch/Makefile.am:
+ Add mips/libarchmips.la to libarch_la_LIBADD and mips to SUBDIRS.
+
+ * src/arch/mips/instruction.c:
+ * src/arch/mips/instruction.h:
+ * src/arch/mips/Makefile.am:
+ * src/arch/mips/op_add.c:
+ * src/arch/mips/op_and.c:
+ * src/arch/mips/op_branch.c:
+ * src/arch/mips/opcodes.h:
+ * src/arch/mips/operand.c:
+ * src/arch/mips/operand.h:
+ * src/arch/mips/op_jump.c:
+ * src/arch/mips/op_load.c:
+ * src/arch/mips/op_nop.c:
+ * src/arch/mips/op_sr.c:
+ * src/arch/mips/op_store.c:
+ * src/arch/mips/op_sub.c:
+ * src/arch/mips/processor.c:
+ * src/arch/mips/processor.h:
+ * src/arch/mips/registers.c:
+ * src/arch/mips/registers.h:
+ New entries: add enough support of the MIPS architecture to disassemble
+ a basic 'hello world' program.
+
+ * src/arch/processor.c:
+ * src/arch/processor.h:
+ Support a new architecture (MIPS).
+
+ * src/arch/x86/instruction.c:
+ New entries: add missing files from previous commit.
+
+ * src/arch/x86/operand.c:
+ * src/arch/x86/operand.h:
+ * src/arch/x86/op_jump.c:
+ Typo.
+
+ * src/arch/x86/op_scas.c:
+ * src/arch/x86/registers.c:
+ * src/arch/x86/registers.h:
+ New entries: add missing files from previous commit.
+
+ * src/format/elf/e_elf.c:
+ * src/format/exe_format.c:
+ * src/format/exe_format.h:
+ Support a new architecture (MIPS). Make the loading more verbose.
+
09-05-25 Cyrille Bagard <nocbos@gmail.com>
* src/analysis/binary.c: