diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2009-10-04 21:31:35 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2009-10-04 21:31:35 (GMT) | 
| commit | 34612ad3304e9064f38c3adce728f2a71352c981 (patch) | |
| tree | 4fde28976b0c6d8700f9242b549192fe622e30cb /src/arch/x86/op_not.c | |
| parent | 5d33469143778e8ab22b362b7a647f53cd6fc840 (diff) | |
Supported extra x86 opcodes. Fixed a bug with two-byte opcodes.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@126 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/x86/op_not.c')
| -rw-r--r-- | src/arch/x86/op_not.c | 33 | 
1 files changed, 33 insertions, 0 deletions
| diff --git a/src/arch/x86/op_not.c b/src/arch/x86/op_not.c index f57c754..e5677fe 100644 --- a/src/arch/x86/op_not.c +++ b/src/arch/x86/op_not.c @@ -38,6 +38,39 @@  *                addr = adresse virtuelle de l'instruction.                   *  *                proc = architecture ciblée par le désassemblage.             *  *                                                                             * +*  Description : Décode une instruction de type 'not' (8 bits).               * +*                                                                             * +*  Retour      : Instruction mise en place ou NULL.                           * +*                                                                             * +*  Remarques   : -                                                            * +*                                                                             * +******************************************************************************/ + +GArchInstruction *x86_read_instr_not_rm8(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, X86Prefix prefix, const GX86Processor *proc) +{ +    GArchInstruction *result;               /* Instruction à retourner     */ + +    result = g_x86_instruction_new(XOP_NOT_RM8); + +    if (!x86_read_one_operand(result, data, pos, len, X86_OTP_RM8)) +    { +        /* TODO free(result);*/ +        return NULL; +    } + +    return result; + +} + + +/****************************************************************************** +*                                                                             * +*  Paramètres  : data = flux de données à analyser.                           * +*                pos  = position courante dans ce flux. [OUT]                 * +*                len  = taille totale des données à analyser.                 * +*                addr = adresse virtuelle de l'instruction.                   * +*                proc = architecture ciblée par le désassemblage.             * +*                                                                             *  *  Description : Décode une instruction de type 'not' (16 ou 32 bits).        *  *                                                                             *  *  Retour      : Instruction mise en place ou NULL.                           * | 
