about summary refs log tree commit diff stats
path: root/example/disas_and_graph.py
diff options
context:
space:
mode:
authorserpilliere <devnull@localhost>2011-08-22 15:34:00 +0200
committerserpilliere <devnull@localhost>2011-08-22 15:34:00 +0200
commita8d847d88286351b50c35510241ddac03d0994d5 (patch)
tree9fa1055217c16bd0aeb18e8e1b3dad9b9d4a5888 /example/disas_and_graph.py
parentc9ac0f48aab1ec0cde878483c86b3b09079d23d4 (diff)
downloadmiasm-a8d847d88286351b50c35510241ddac03d0994d5.tar.gz
miasm-a8d847d88286351b50c35510241ddac03d0994d5.zip
improuve graph historic/placement
Diffstat (limited to 'example/disas_and_graph.py')
-rwxr-xr-xexample/disas_and_graph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/disas_and_graph.py b/example/disas_and_graph.py
index 0763f824..bfdeb344 100755
--- a/example/disas_and_graph.py
+++ b/example/disas_and_graph.py
@@ -64,7 +64,7 @@ for (n,f), ad in dll_dyn_funcs.items():
 
 
 def my_disasm_callback(ad):
-    all_bloc = asmbloc.dis_bloc_ia32(in_str, ad, symbol_pool = symbol_pool)
+    all_bloc = asmbloc.dis_bloc_ia32(in_str, ad, symbol_pool = symbol_pool, dont_dis_nulstart_bloc = True)
     for b in all_bloc:
         for l in b.lines:
             for i, a in enumerate(l.arg):