diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 62 |
1 files changed, 62 insertions, 0 deletions
@@ -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: |