about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--miasm2/jitter/loader/elf.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/miasm2/jitter/loader/elf.py b/miasm2/jitter/loader/elf.py
index 61c40ddd..b3946000 100644
--- a/miasm2/jitter/loader/elf.py
+++ b/miasm2/jitter/loader/elf.py
@@ -85,6 +85,8 @@ class libimp_elf(libimp):
 # machine, size, sex -> arch_name
 ELF_machine = {(elf_csts.EM_ARM, 32, elf_csts.ELFDATA2LSB): "arml",
                (elf_csts.EM_ARM, 32, elf_csts.ELFDATA2MSB): "armb",
+               (elf_csts.EM_AARCH64, 64, elf_csts.ELFDATA2LSB): "aarch64l",
+               (elf_csts.EM_AARCH64, 64, elf_csts.ELFDATA2MSB): "aarch64b",
                (elf_csts.EM_MIPS, 32, elf_csts.ELFDATA2MSB): "mips32b",
                (elf_csts.EM_MIPS, 32, elf_csts.ELFDATA2LSB): "mips32l",
                (elf_csts.EM_386, 32, elf_csts.ELFDATA2LSB): "x86_32",