about summary refs log tree commit diff stats
path: root/miasm2/arch/mep/disasm.py
diff options
context:
space:
mode:
Diffstat (limited to 'miasm2/arch/mep/disasm.py')
-rw-r--r--miasm2/arch/mep/disasm.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/miasm2/arch/mep/disasm.py b/miasm2/arch/mep/disasm.py
new file mode 100644
index 00000000..2ad73036
--- /dev/null
+++ b/miasm2/arch/mep/disasm.py
@@ -0,0 +1,23 @@
+# Toshiba MeP-c4 - miasm disassembly engine
+# Guillaume Valadon <guillaume@valadon.net>
+
+from miasm2.core.asmblock import disasmEngine
+from miasm2.arch.mep.arch import mn_mep
+
+
+class dis_mepb(disasmEngine):
+    """MeP miasm disassembly engine - Big Endian
+
+       Notes:
+           - its is mandatory to call the miasm Machine
+    """
+
+    attrib = "b"
+
+    def __init__(self, bs=None, **kwargs):
+        super(dis_mepb, self).__init__(mn_mep, self.attrib, bs, **kwargs)
+
+
+class dis_mepl(dis_mepb):
+    """MeP miasm disassembly engine - Little Endian"""
+    attrib = "l"