diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-10-14 09:09:29 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-10-14 09:09:29 +0000 |
| commit | 579cf1d03fb932083e6317967d1613d5c2587fb6 (patch) | |
| tree | 629f039935382a2a7391bce9253f6c9968159049 /src/miasm/arch/ppc/disasm.py | |
| parent | 51c15d3ea2e16d4fc5f0f01a3b9befc66b1f982e (diff) | |
| download | focaccia-miasm-ta/nix.tar.gz focaccia-miasm-ta/nix.zip | |
Convert to src-layout ta/nix
Diffstat (limited to 'src/miasm/arch/ppc/disasm.py')
| -rw-r--r-- | src/miasm/arch/ppc/disasm.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/miasm/arch/ppc/disasm.py b/src/miasm/arch/ppc/disasm.py new file mode 100644 index 00000000..b91d96bf --- /dev/null +++ b/src/miasm/arch/ppc/disasm.py @@ -0,0 +1,7 @@ +from miasm.arch.ppc.arch import mn_ppc +from miasm.core.asmblock import disasmEngine + +class dis_ppc32b(disasmEngine): + def __init__(self, bs=None, **kwargs): + super(dis_ppc32b, self).__init__(mn_ppc, None, bs, **kwargs) + self.attrib = 'b' |