diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-07-07 08:17:30 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-07-07 12:33:47 +0200 |
| commit | 7c98de47f759e98fafab5e203e1f2d13e559f2cc (patch) | |
| tree | 04f99c8ce69885d911054a9bb521f1a16ed6f825 /example/symbol_exec/single_instr.py | |
| parent | 0da61c83fdf9053b043391634a175b104b332e42 (diff) | |
| download | miasm-7c98de47f759e98fafab5e203e1f2d13e559f2cc.tar.gz miasm-7c98de47f759e98fafab5e203e1f2d13e559f2cc.zip | |
IR: rename add_bloc
Diffstat (limited to 'example/symbol_exec/single_instr.py')
| -rw-r--r-- | example/symbol_exec/single_instr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/symbol_exec/single_instr.py b/example/symbol_exec/single_instr.py index c31de738..1d520d3a 100644 --- a/example/symbol_exec/single_instr.py +++ b/example/symbol_exec/single_instr.py @@ -18,7 +18,7 @@ asm_block = mdis.dis_bloc(START_ADDR) # Translate ASM -> IR ira = machine.ira(mdis.symbol_pool) -ira.add_bloc(asm_block) +ira.add_block(asm_block) # Instanciate a Symbolic Execution engine with default value for registers ## EAX = EAX_init, ... |