about summary refs log tree commit diff stats
path: root/src/miasm/arch/msp430/disasm.py
diff options
context:
space:
mode:
authorTheofilos Augoustis <theofilos.augoustis@gmail.com>2025-10-14 09:09:29 +0000
committerTheofilos Augoustis <theofilos.augoustis@gmail.com>2025-10-14 09:09:29 +0000
commit579cf1d03fb932083e6317967d1613d5c2587fb6 (patch)
tree629f039935382a2a7391bce9253f6c9968159049 /src/miasm/arch/msp430/disasm.py
parent51c15d3ea2e16d4fc5f0f01a3b9befc66b1f982e (diff)
downloadfocaccia-miasm-579cf1d03fb932083e6317967d1613d5c2587fb6.tar.gz
focaccia-miasm-579cf1d03fb932083e6317967d1613d5c2587fb6.zip
Convert to src-layout ta/nix
Diffstat (limited to 'src/miasm/arch/msp430/disasm.py')
-rw-r--r--src/miasm/arch/msp430/disasm.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/miasm/arch/msp430/disasm.py b/src/miasm/arch/msp430/disasm.py
new file mode 100644
index 00000000..eff77d2d
--- /dev/null
+++ b/src/miasm/arch/msp430/disasm.py
@@ -0,0 +1,8 @@
+from miasm.core.asmblock import disasmEngine
+from miasm.arch.msp430.arch import mn_msp430
+
+
+class dis_msp430(disasmEngine):
+
+    def __init__(self, bs=None, **kwargs):
+        super(dis_msp430, self).__init__(mn_msp430, None, bs, **kwargs)