diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 48 |
1 files changed, 48 insertions, 0 deletions
@@ -1,3 +1,51 @@ +2008-10-27 Cyrille Bagard <nocbos@gmail.com> + + * src/arch/processor.c: + Take care here of decoding failures. + + * src/arch/x86/instruction.h: + Register some new instructions. + + * src/arch/x86/Makefile.am: + Add op_movzx.c, op_rcl.c, op_rcr.c, op_rol.c, op_ror.c, op_shl.c and + op_shr.c to libarchx86_a_SOURCES. + + * src/arch/x86/op_adc.c: + * src/arch/x86/op_add.c: + * src/arch/x86/op_and.c: + * src/arch/x86/op_cmp.c: + Complete support of the 0x81 and 0xc1 opcodes. + + * src/arch/x86/opcodes.h: + Register some new instructions. + + * src/arch/x86/op_movzx.c: + First attempt to handle a two-byte instruction. + + * src/arch/x86/op_or.c: + Complete support of the 0x81 and 0xc1 opcodes. + + * src/arch/x86/op_rcl.c: + * src/arch/x86/op_rcr.c: + * src/arch/x86/op_rol.c: + * src/arch/x86/op_ror.c: + New entries: complete support of the 0x81 and 0xc1 opcodes. + + * src/arch/x86/op_sar.c: + * src/arch/x86/op_sbb.c: + Complete support of the 0x81 and 0xc1 opcodes. + + * src/arch/x86/op_shl.c: + * src/arch/x86/op_shr.c: + New entries: complete support of the 0x81 and 0xc1 opcodes. + + * src/arch/x86/op_sub.c: + * src/arch/x86/op_xor.c: + Complete support of the 0x81 and 0xc1 opcodes. + + * src/arch/x86/processor.c: + Better handle prefixes. Complete support of the 0x81 and 0xc1 opcodes. + 2008-10-21 Cyrille Bagard <nocbos@gmail.com> * src/arch/x86/processor.c: |