diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2010-11-11 01:22:43 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2010-11-11 01:22:43 (GMT) | 
| commit | b33a52031c0d44a79604bc8d9036c30bffd020cb (patch) | |
| tree | c825e3330684ca57f7c423328cd116b2d6ec0f6a /src/arch/operand.c | |
| parent | 828124e38d266e382bb1477ef51c9fac8e81c591 (diff) | |
Built some expressions for the decompilation tree.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@190 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/operand.c')
| -rw-r--r-- | src/arch/operand.c | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/src/arch/operand.c b/src/arch/operand.c index d4f6b56..16fc073 100644 --- a/src/arch/operand.c +++ b/src/arch/operand.c @@ -96,3 +96,24 @@ char *g_arch_operand_get_text(const GArchOperand *operand, const GExeFormat *for      return operand->get_text(operand, format, syntax);  } + + +/****************************************************************************** +*                                                                             * +*  Paramètres  : operand = opérande à traiter.                                * +*                line    = ligne tampon où imprimer l'opérande donné.         * +*                syntax  = type de représentation demandée.                   * +*                                                                             * +*  Description : Traduit un opérande en version humainement lisible.          * +*                                                                             * +*  Retour      : -                                                            * +*                                                                             * +*  Remarques   : -                                                            * +*                                                                             * +******************************************************************************/ + +void g_arch_operand_print(const GArchOperand *operand, GBufferLine *line, AsmSyntax syntax) +{ +    return operand->print(operand, line, syntax); + +} | 
