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