about summary refs log tree commit diff stats
path: root/miasm2/arch/mips32/disasm.py
diff options
context:
space:
mode:
authorserpilliere <devnull@localhost>2014-08-21 10:01:44 +0200
committerserpilliere <devnull@localhost>2014-08-21 10:01:44 +0200
commit7dc8096e095e9c36c9b116a52a34ec0128dee74a (patch)
treefea3d0f304c987966003b6bb4fef8c7a285a9664 /miasm2/arch/mips32/disasm.py
parent57632368917e0b129c9f59444dd2509458cf2381 (diff)
downloadmiasm-7dc8096e095e9c36c9b116a52a34ec0128dee74a.tar.gz
miasm-7dc8096e095e9c36c9b116a52a34ec0128dee74a.zip
mips: fix tipo
Diffstat (limited to 'miasm2/arch/mips32/disasm.py')
-rw-r--r--miasm2/arch/mips32/disasm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/mips32/disasm.py b/miasm2/arch/mips32/disasm.py
index 29b699eb..4d6d2283 100644
--- a/miasm2/arch/mips32/disasm.py
+++ b/miasm2/arch/mips32/disasm.py
@@ -12,6 +12,6 @@ class dis_mips32b(disasmEngine):
 class dis_mips32l(disasmEngine):
     attrib = "l"
     def __init__(self, bs=None, **kwargs):
-        super(dis_mips32l, self).__init__(mn_mips32l, self.attrib, bs, **kwargs)
+        super(dis_mips32l, self).__init__(mn_mips32, self.attrib, bs, **kwargs)