diff options
| author | serpilliere <devnull@localhost> | 2014-08-21 10:01:44 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-08-21 10:01:44 +0200 |
| commit | 7dc8096e095e9c36c9b116a52a34ec0128dee74a (patch) | |
| tree | fea3d0f304c987966003b6bb4fef8c7a285a9664 /miasm2/arch/mips32/disasm.py | |
| parent | 57632368917e0b129c9f59444dd2509458cf2381 (diff) | |
| download | miasm-7dc8096e095e9c36c9b116a52a34ec0128dee74a.tar.gz miasm-7dc8096e095e9c36c9b116a52a34ec0128dee74a.zip | |
mips: fix tipo
Diffstat (limited to 'miasm2/arch/mips32/disasm.py')
| -rw-r--r-- | miasm2/arch/mips32/disasm.py | 2 |
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) |