about summary refs log tree commit diff stats
path: root/example/disasm/file.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2017-07-20 19:35:49 +0200
committerGitHub <noreply@github.com>2017-07-20 19:35:49 +0200
commit4dfca940e75ad8af65b69dd9bab9ff503141984b (patch)
treeaad96a02c272397eae9fd7377ea86a713814516a /example/disasm/file.py
parente45256e15c62aba315ab1e2db5697a14837f5827 (diff)
parent4fcd0faa925d8d33db3622430548e932443d6f02 (diff)
downloadmiasm-4dfca940e75ad8af65b69dd9bab9ff503141984b.tar.gz
miasm-4dfca940e75ad8af65b69dd9bab9ff503141984b.zip
Merge pull request #579 from serpilliere/fix_get_bloc
Fix get bloc
Diffstat (limited to 'example/disasm/file.py')
-rw-r--r--example/disasm/file.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/disasm/file.py b/example/disasm/file.py
index db5cd96b..88ba6162 100644
--- a/example/disasm/file.py
+++ b/example/disasm/file.py
@@ -13,6 +13,6 @@ cont = Container.from_stream(open(sys.argv[1]))
 mdis = dis_x86_32(cont.bin_stream)
 # Inform the engine to avoid disassembling null instructions
 mdis.dont_dis_nulstart_bloc = True
-blocks = mdis.dis_multibloc(addr)
+blocks = mdis.dis_multiblock(addr)
 
 open('graph.dot', 'w').write(blocks.dot())