diff options
| author | Camille Mougey <commial@gmail.com> | 2018-10-06 16:43:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-06 16:43:55 +0200 |
| commit | 369371ca24c5f4fd6670cb36b80fbd29650de7d0 (patch) | |
| tree | 7b9b319f3f365cb8b71b5dcf1f07f13559798513 /example/ida/symbol_exec.py | |
| parent | 75b389f70e7cc6640cbfb62268ba89f8985be1ed (diff) | |
| parent | 9c4c548e372311f6d685647b3cfed35e1579ad54 (diff) | |
| download | miasm-369371ca24c5f4fd6670cb36b80fbd29650de7d0.tar.gz miasm-369371ca24c5f4fd6670cb36b80fbd29650de7d0.zip | |
Merge pull request #855 from serpilliere/exprassign
Exprassign
Diffstat (limited to 'example/ida/symbol_exec.py')
| -rw-r--r-- | example/ida/symbol_exec.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/ida/symbol_exec.py b/example/ida/symbol_exec.py index ffaa9b27..e004b1b6 100644 --- a/example/ida/symbol_exec.py +++ b/example/ida/symbol_exec.py @@ -3,7 +3,7 @@ import operator import idaapi import idc from miasm2.expression.expression_helper import Variables_Identifier -from miasm2.expression.expression import ExprAff +from miasm2.expression.expression import ExprAssign from utils import expr2colorstr, translatorForm @@ -64,7 +64,7 @@ class symbolicexec_t(idaapi.simplecustviewer_t): def translate_expr(self, line_nb): element = self.line2eq[line_nb] - expr = ExprAff(*element) + expr = ExprAssign(*element) form = translatorForm(expr) form.Compile() form.Execute() |