about summary refs log tree commit diff stats
path: root/miasm2/arch/mips32
diff options
context:
space:
mode:
Diffstat (limited to 'miasm2/arch/mips32')
-rw-r--r--miasm2/arch/mips32/arch.py6
-rw-r--r--miasm2/arch/mips32/disasm.py5
2 files changed, 5 insertions, 6 deletions
diff --git a/miasm2/arch/mips32/arch.py b/miasm2/arch/mips32/arch.py
index ac22f7c9..eb163daa 100644
--- a/miasm2/arch/mips32/arch.py
+++ b/miasm2/arch/mips32/arch.py
@@ -7,9 +7,9 @@ from miasm2.expression.expression import *
 from miasm2.core.cpu import *
 from collections import defaultdict
 from miasm2.core.bin_stream import bin_stream
-import regs as regs_module
-from regs import *
-from pdb import pm
+import miasm2.arch.mips32.regs as regs_module
+from miasm2.arch.mips32.regs import *
+
 
 log = logging.getLogger("mips32dis")
 console_handler = logging.StreamHandler()
diff --git a/miasm2/arch/mips32/disasm.py b/miasm2/arch/mips32/disasm.py
index 4d6d2283..e5a70349 100644
--- a/miasm2/arch/mips32/disasm.py
+++ b/miasm2/arch/mips32/disasm.py
@@ -1,5 +1,5 @@
-from miasm2.core.asmbloc import asm_constraint, disasmEngine
-from arch import mn_mips32
+from miasm2.core.asmbloc import disasmEngine
+from miasm2.arch.mips32.arch import mn_mips32
 
 
 
@@ -14,4 +14,3 @@ class dis_mips32l(disasmEngine):
     def __init__(self, bs=None, **kwargs):
         super(dis_mips32l, self).__init__(mn_mips32, self.attrib, bs, **kwargs)
 
-