about summary refs log tree commit diff stats
path: root/miasm2/arch/mips32/disasm.py
diff options
context:
space:
mode:
authorserpilliere <devnull@localhost>2014-08-20 16:22:52 +0200
committerserpilliere <devnull@localhost>2014-08-20 16:22:52 +0200
commit796e31995ef89226f6ec6b2d319e8a6b3fc96344 (patch)
tree71c1001c3795c4324914c369d6b4ee7664e0f709 /miasm2/arch/mips32/disasm.py
parent4d7684293df6bb8daefcdf22d1f03dc97c44f8fa (diff)
downloadmiasm-796e31995ef89226f6ec6b2d319e8a6b3fc96344.tar.gz
miasm-796e31995ef89226f6ec6b2d319e8a6b3fc96344.zip
mips: missing files
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)
+
+