about summary refs log tree commit diff stats
path: root/example/ida/utils.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2015-02-11 10:58:09 +0100
committerserpilliere <serpilliere@users.noreply.github.com>2015-02-11 10:58:09 +0100
commitdc916d52815feee22cc81a29fe1272278d4caefc (patch)
tree5d305d657dfc2518eef905af38bf93f3176f4dc0 /example/ida/utils.py
parentdf8d59c99522ef62923622f9484dec5bf51443a8 (diff)
parent62a092e43042067b1437ac16f8fc69e40a47a136 (diff)
downloadmiasm-dc916d52815feee22cc81a29fe1272278d4caefc.tar.gz
miasm-dc916d52815feee22cc81a29fe1272278d4caefc.zip
Merge pull request #62 from commial/ida-example-fix-imports
Example/IDA: Reorganize imports
Diffstat (limited to 'example/ida/utils.py')
-rw-r--r--example/ida/utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/example/ida/utils.py b/example/ida/utils.py
index 8b9dcf6a..5a0e4c83 100644
--- a/example/ida/utils.py
+++ b/example/ida/utils.py
@@ -40,6 +40,7 @@ def guess_machine():
             else:
                 machine = Machine("arml")
 
+        from miasm2.analysis.disasm_cb import guess_funcs, guess_multi_cb
         from miasm2.analysis.disasm_cb import arm_guess_subcall, arm_guess_jump_table
         guess_funcs.append(arm_guess_subcall)
         guess_funcs.append(arm_guess_jump_table)