diff options
| author | Camille Mougey <commial@gmail.com> | 2018-03-05 13:18:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-05 13:18:22 +0100 |
| commit | 342614c1ec4bedd5bcc089ba01909a66b9a73aba (patch) | |
| tree | 683728881150e2406849bcc1e1c13c62bc0b6d44 /miasm2/jitter/loader/elf.py | |
| parent | a3013003b9f77b017036bd1d46797052d875efbe (diff) | |
| parent | 5d5c768db62da037d156808f528cf9c1e14db8ab (diff) | |
| download | miasm-342614c1ec4bedd5bcc089ba01909a66b9a73aba.tar.gz miasm-342614c1ec4bedd5bcc089ba01909a66b9a73aba.zip | |
Merge pull request #690 from serpilliere/integrate_ppc
Integrate ppc
Diffstat (limited to 'miasm2/jitter/loader/elf.py')
| -rw-r--r-- | miasm2/jitter/loader/elf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/jitter/loader/elf.py b/miasm2/jitter/loader/elf.py index 336f522a..deaebd09 100644 --- a/miasm2/jitter/loader/elf.py +++ b/miasm2/jitter/loader/elf.py @@ -100,6 +100,7 @@ ELF_machine = {(elf_csts.EM_ARM, 32, elf_csts.ELFDATA2LSB): "arml", (elf_csts.EM_386, 32, elf_csts.ELFDATA2LSB): "x86_32", (elf_csts.EM_X86_64, 64, elf_csts.ELFDATA2LSB): "x86_64", (elf_csts.EM_SH, 32, elf_csts.ELFDATA2LSB): "sh4", + (elf_csts.EM_PPC, 32, elf_csts.ELFDATA2MSB): "ppc32b", } |