about summary refs log tree commit diff stats
path: root/example/disasm/callback.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2018-02-02 17:18:03 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2018-02-02 17:20:56 +0100
commit149c40453908e8552aeddcae013d5c48584f0f88 (patch)
treeb1d4f1880fa369df292b6e5b865456a55c2f7e1f /example/disasm/callback.py
parent738f6c6a606b2bea9c8c5eebb093aa1d88240a20 (diff)
downloadfocaccia-miasm-149c40453908e8552aeddcae013d5c48584f0f88.tar.gz
focaccia-miasm-149c40453908e8552aeddcae013d5c48584f0f88.zip
Asmblock: fix dis_block_callback
Diffstat (limited to 'example/disasm/callback.py')
-rw-r--r--example/disasm/callback.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/disasm/callback.py b/example/disasm/callback.py
index 63987e85..a9bef20b 100644
--- a/example/disasm/callback.py
+++ b/example/disasm/callback.py
@@ -52,7 +52,7 @@ print "\n".join(str(block) for block in blocks)
 # Enable callback
 cb_x86_funcs.append(cb_x86_callpop)
 ## Other method:
-## mdis.dis_bloc_callback = cb_x86_callpop
+## mdis.dis_block_callback = cb_x86_callpop
 
 print "=" * 40
 print "With callback:\n"