about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorserpilliere <devnull@localhost>2014-07-22 12:05:15 +0200
committerserpilliere <devnull@localhost>2014-07-22 12:05:15 +0200
commit0ff4cb2858e8de938d40749faf55a9a31623f97d (patch)
tree7d9a940c90cbc829f9a6150efb43bf083ee23abf
parente11704c033995f5888a84b4d211c9621ca4f231f (diff)
downloadmiasm-0ff4cb2858e8de938d40749faf55a9a31623f97d.tar.gz
miasm-0ff4cb2858e8de938d40749faf55a9a31623f97d.zip
SH4: fix tipo
-rw-r--r--miasm2/arch/sh4/arch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/sh4/arch.py b/miasm2/arch/sh4/arch.py
index d07e631d..d6a44881 100644
--- a/miasm2/arch/sh4/arch.py
+++ b/miasm2/arch/sh4/arch.py
@@ -407,7 +407,7 @@ class instruction_sh4(instruction):
     delayslot = 0
 
     def __init__(self, *args, **kargs):
-        super(instruction_arm, self).__init__(*args, **kargs)
+        super(instruction_sh4, self).__init__(*args, **kargs)
 
     def dstflow(self):
         return self.name.startswith('J')