about summary refs log tree commit diff stats
path: root/example/disasm/function.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/disasm/function.py
parent84d93930af5faee327784bed0646ef4eecf8328b (diff)
downloadmiasm-4fcd0faa925d8d33db3622430548e932443d6f02.tar.gz
miasm-4fcd0faa925d8d33db3622430548e932443d6f02.zip
Asmblock: rename bloc
Diffstat (limited to 'example/disasm/function.py')
-rw-r--r--example/disasm/function.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/disasm/function.py b/example/disasm/function.py
index 1fe1754f..89f65abb 100644
--- a/example/disasm/function.py
+++ b/example/disasm/function.py
@@ -8,7 +8,7 @@ from miasm2.arch.x86.disasm import dis_x86_32
 # RET
 shellcode = '\xb8\xef\xbe7\x13\xb9\x04\x00\x00\x00\xc1\xc0\x08\xe2\xfb\xc3'
 mdis = dis_x86_32(shellcode)
-blocks = mdis.dis_multibloc(0)
+blocks = mdis.dis_multiblock(0)
 
 for block in blocks:
     print block