diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 39 |
1 files changed, 39 insertions, 0 deletions
@@ -1,3 +1,42 @@ +2008-10-19 Cyrille Bagard <nocbos@gmail.com> + + * src/arch/instruction.c: + Define a type for the 'db' instruction. + + * src/arch/instruction-int.h: + Add more information about instructions: virtual address and type. + + * src/arch/operand.c: + * src/arch/operand.h: + Add a function to get the immediate value of an operand. + + * src/arch/processor.c: + Save the virtual address of a decoded instruction. + + * src/arch/x86/instruction.h: + * src/arch/x86/op_add.c: + * src/arch/x86/opcodes.h: + Register some new instructions. + + * src/arch/x86/operand.c: + Fix a bug when reading relative addresses (16/32 bits). + + * src/arch/x86/op_jump.c: + * src/arch/x86/op_push.c: + Register some new instructions and define their type. + + * src/arch/x86/processor.c: + Register some new instructions. Fix the case of the 0x00 opcode (add). + + * src/format/elf/e_elf.c: + Load .plt as executable section. + + * src/format/elf/elf-int.h: + Try to support both 32 and 64 bits architectures (Elf_Rel and Elf_Sym). + + * src/format/elf/symbol.c: + Register symbols found in the PLT. + 2008-10-12 Cyrille Bagard <nocbos@gmail.com> * src/binary.c: |