diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -1,3 +1,36 @@ +2008-08-03 Cyrille Bagard <nocbos@gmail.com> + + * src/arch/x86/instruction.h: + Remove all the identifiers for the prefix '0x66'. + + * src/arch/x86/Makefile.am: + Add op_(adc|add|and|or|sbb|sub|xor).c to libarchx86_a_SOURCES. + + * src/arch/x86/op_adc.c: + * src/arch/x86/op_add.c: + * src/arch/x86/op_and.c: + New entries: support more opcodes. + + * src/arch/x86/opcodes.h: + Register the new opcodes. + + * src/arch/x86/operand.c: + * src/arch/x86/operand.h: + Read registers from the ModR/M encoding. + + * src/arch/x86/op_mov.c: + Support the 'mov' opcode from a register to another one. + + * src/arch/x86/op_or.c: + * src/arch/x86/op_sbb.c: + * src/arch/x86/op_sub.c: + * src/arch/x86/op_xor.c: + New entries: support more opcodes. + + * src/arch/x86/processor.c: + Handle opcode extension. Improve the way that instructions with prefix + are handled, and thus decrease the amount of lines of code. + 2008-08-01 Cyrille Bagard <nocbos@gmail.com> * src/arch/x86/instruction.h: |