diff options
| author | serpilliere <devnull@localhost> | 2014-08-20 16:22:52 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-08-20 16:22:52 +0200 |
| commit | 796e31995ef89226f6ec6b2d319e8a6b3fc96344 (patch) | |
| tree | 71c1001c3795c4324914c369d6b4ee7664e0f709 /miasm2/arch/mips32/disasm.py | |
| parent | 4d7684293df6bb8daefcdf22d1f03dc97c44f8fa (diff) | |
| download | miasm-796e31995ef89226f6ec6b2d319e8a6b3fc96344.tar.gz miasm-796e31995ef89226f6ec6b2d319e8a6b3fc96344.zip | |
mips: missing files
Diffstat (limited to 'miasm2/arch/mips32/disasm.py')
| -rw-r--r-- | miasm2/arch/mips32/disasm.py | 17 |
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) + + |