diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-08-26 14:36:46 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-08-31 07:50:01 +0200 |
| commit | 24ce193b8bad352853a9c5589f6fdcf5177d5466 (patch) | |
| tree | 2fb59bca2aada9280fb1aecd2ebdd633a23cdc4b /example/expression | |
| parent | 6f5cb3bef180400001541f56f704f77da0d73429 (diff) | |
| download | miasm-24ce193b8bad352853a9c5589f6fdcf5177d5466.tar.gz miasm-24ce193b8bad352853a9c5589f6fdcf5177d5466.zip | |
Update api according to loc_db update
Diffstat (limited to 'example/expression')
| -rw-r--r-- | example/expression/asm_to_ir.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/expression/asm_to_ir.py b/example/expression/asm_to_ir.py index edc23437..8ecc4f24 100644 --- a/example/expression/asm_to_ir.py +++ b/example/expression/asm_to_ir.py @@ -40,7 +40,7 @@ for block in asmcfg.blocks: print("symbols:") print(loc_db) -patches = asmblock.asm_resolve_final(mn_x86, asmcfg, loc_db) +patches = asmblock.asm_resolve_final(mn_x86, asmcfg) # Translate to IR ir_arch = ir_a_x86_32(loc_db) |