about summary refs log tree commit diff stats
path: root/miasm2/jitter/loader/elf.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2018-03-02 10:31:20 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2018-03-04 02:44:17 +0100
commit21604c8e0541ea03a38f15831eafaf5793396887 (patch)
tree6dbc82cae269b2fe33742f809b12b73fa18df8d9 /miasm2/jitter/loader/elf.py
parenta3013003b9f77b017036bd1d46797052d875efbe (diff)
downloadmiasm-21604c8e0541ea03a38f15831eafaf5793396887.tar.gz
miasm-21604c8e0541ea03a38f15831eafaf5793396887.zip
PPC32: integration
Diffstat (limited to 'miasm2/jitter/loader/elf.py')
-rw-r--r--miasm2/jitter/loader/elf.py1
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",
                }