diff options
| author | Ajax <commial@gmail.com> | 2015-11-06 17:43:02 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2015-11-06 17:53:27 +0100 |
| commit | fe5b12c623fe8bc3d14beb6cd5f8f0db05aa1030 (patch) | |
| tree | 4f75445b90b6c6dd80606ba29aeb1c2dfb439006 /example/expression/asm_to_ir.py | |
| parent | 8cc9de4f952751b417d41533e02b5df1f52c4a90 (diff) | |
| download | miasm-fe5b12c623fe8bc3d14beb6cd5f8f0db05aa1030.tar.gz miasm-fe5b12c623fe8bc3d14beb6cd5f8f0db05aa1030.zip | |
Example/Expr: unused import
Diffstat (limited to 'example/expression/asm_to_ir.py')
| -rw-r--r-- | example/expression/asm_to_ir.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/example/expression/asm_to_ir.py b/example/expression/asm_to_ir.py index 19ffd659..ee8a481a 100644 --- a/example/expression/asm_to_ir.py +++ b/example/expression/asm_to_ir.py @@ -1,10 +1,10 @@ -from miasm2.core.cpu import parse_ast, ast_id2expr -from miasm2.arch.x86.arch import mn_x86, base_expr +from pdb import pm + +from miasm2.arch.x86.arch import mn_x86 from miasm2.core import parse_asm from miasm2.expression.expression import * from miasm2.core import asmbloc from miasm2.arch.x86.ira import ir_a_x86_32 -from pdb import pm # First, asm code |