about summary refs log tree commit diff stats
path: root/example/symbol_exec/single_instr.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2017-07-07 12:20:08 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2017-07-07 12:43:04 +0200
commit4fcd0faa925d8d33db3622430548e932443d6f02 (patch)
tree245ae1df0ef337cc764a595a6026513536209c88 /example/symbol_exec/single_instr.py
parent84d93930af5faee327784bed0646ef4eecf8328b (diff)
downloadmiasm-4fcd0faa925d8d33db3622430548e932443d6f02.tar.gz
miasm-4fcd0faa925d8d33db3622430548e932443d6f02.zip
Asmblock: rename bloc
Diffstat (limited to 'example/symbol_exec/single_instr.py')
-rw-r--r--example/symbol_exec/single_instr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/symbol_exec/single_instr.py b/example/symbol_exec/single_instr.py
index 1d520d3a..263c0252 100644
--- a/example/symbol_exec/single_instr.py
+++ b/example/symbol_exec/single_instr.py
@@ -14,7 +14,7 @@ asm = machine.mn.asm(line)[0]
 # Get back block
 bin_stream = bin_stream_str(asm)
 mdis = machine.dis_engine(bin_stream)
-asm_block = mdis.dis_bloc(START_ADDR)
+asm_block = mdis.dis_block(START_ADDR)
 
 # Translate ASM -> IR
 ira = machine.ira(mdis.symbol_pool)