about summary refs log tree commit diff stats
path: root/miasm2/arch/mips32/disasm.py
diff options
context:
space:
mode:
Diffstat (limited to 'miasm2/arch/mips32/disasm.py')
-rw-r--r--miasm2/arch/mips32/disasm.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/miasm2/arch/mips32/disasm.py b/miasm2/arch/mips32/disasm.py
new file mode 100644
index 00000000..9b236748
--- /dev/null
+++ b/miasm2/arch/mips32/disasm.py
@@ -0,0 +1,17 @@
+from miasm2.core.asmbloc import asm_constraint, disasmEngine
+from arch import mn_mips32b, mn_mips32l
+
+
+
+class dis_mips32b(disasmEngine):
+    attrib = None
+    def __init__(self, bs=None, **kwargs):
+        super(dis_mips32b, self).__init__(mn_mips32b, self.attrib, bs, **kwargs)
+
+
+class dis_mips32l(disasmEngine):
+    attrib = None
+    def __init__(self, bs=None, **kwargs):
+        super(dis_mips32l, self).__init__(mn_mips32l, self.attrib, bs, **kwargs)
+
+