diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2008-10-27 20:00:09 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2008-10-27 20:00:09 (GMT) |
commit | 2e5893f9261ba59e06fadcc6ddfa9a1253e286b3 (patch) | |
tree | 8197f6419812e7c36c28d6849ced3e37e8926539 /ChangeLog | |
parent | 197933fdf469ab9b8897b33c51809c128f1e3c03 (diff) |
Extended the current opcode support (0x01, 0x72, 0x73, 0x88, 0xd3, 0xf7, 0xfc, 0xb6 and 0xbe).
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@38 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 41 |
1 files changed, 41 insertions, 0 deletions
@@ -1,5 +1,46 @@ 2008-10-27 Cyrille Bagard <nocbos@gmail.com> + * src/arch/x86/instruction.h: + Register some new instructions. + + * src/arch/x86/Makefile.am: + Add op_cld, op_movsx and op_not to libarchx86_a_SOURCES. + + * src/arch/x86/op_add.c: + Extend the current opcode support. + + * rc/arch/x86/op_cld.c: + New entry: handle a new opcode. + + * src/arch/x86/opcodes.h: + Register some new instructions. + + * src/arch/x86/operand.c: + * src/arch/x86/operand.h: + Accept the 'cl' register as operand. + + * src/arch/x86/op_jump.c: + * src/arch/x86/op_mov.c: + Extend the current opcode support. + + * src/arch/x86/op_movsx.c: + New entry: handle a new opcode. + + * src/arch/x86/op_movzx.c: + Extend the current opcode support. + + * src/arch/x86/op_not.c: + New entry: handle a new opcode. + + * src/arch/x86/op_shl.c: + Extend the current opcode support. + + * src/arch/x86/processor.c: + Extend the current opcode support (0x01, 0x72, 0x73, 0x88, 0xd3, 0xf7, + 0xfc, 0xb6 and 0xbe). + +2008-10-27 Cyrille Bagard <nocbos@gmail.com> + * src/arch/processor.c: Take care here of decoding failures. |