about summary refs log tree commit diff stats
path: root/src/miasm/arch/mips32/disasm.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/miasm/arch/mips32/disasm.py')
-rw-r--r--src/miasm/arch/mips32/disasm.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/miasm/arch/mips32/disasm.py b/src/miasm/arch/mips32/disasm.py
new file mode 100644
index 00000000..b6c05cb7
--- /dev/null
+++ b/src/miasm/arch/mips32/disasm.py
@@ -0,0 +1,16 @@
+from miasm.core.asmblock import disasmEngine
+from miasm.arch.mips32.arch import mn_mips32
+
+
+
+class dis_mips32b(disasmEngine):
+    attrib = 'b'
+    def __init__(self, bs=None, **kwargs):
+        super(dis_mips32b, self).__init__(mn_mips32, self.attrib, bs, **kwargs)
+
+
+class dis_mips32l(disasmEngine):
+    attrib = "l"
+    def __init__(self, bs=None, **kwargs):
+        super(dis_mips32l, self).__init__(mn_mips32, self.attrib, bs, **kwargs)
+