elf.h (a84904737277c2f07c8fbcb69db27451d844f12b) | elf.h (b16189b22244e4cc158a3425b377b219586ec8ca) |
---|---|
1#ifndef _QEMU_ELF_H 2#define _QEMU_ELF_H 3 4#include <inttypes.h> 5 6/* 32-bit ELF base types. */ 7typedef uint32_t Elf32_Addr; 8typedef uint16_t Elf32_Half; --- 119 unchanged lines hidden (view full) --- 128 129#define EM_MICROBLAZE 189 130#define EM_MICROBLAZE_OLD 0xBAAB 131 132#define EM_XTENSA 94 /* Tensilica Xtensa */ 133 134#define EM_AARCH64 183 135 | 1#ifndef _QEMU_ELF_H 2#define _QEMU_ELF_H 3 4#include <inttypes.h> 5 6/* 32-bit ELF base types. */ 7typedef uint32_t Elf32_Addr; 8typedef uint16_t Elf32_Half; --- 119 unchanged lines hidden (view full) --- 128 129#define EM_MICROBLAZE 189 130#define EM_MICROBLAZE_OLD 0xBAAB 131 132#define EM_XTENSA 94 /* Tensilica Xtensa */ 133 134#define EM_AARCH64 183 135 |
136#define EM_TILEGX 191 /* TILE-Gx */ 137 |
|
136/* This is the info that is needed to parse the dynamic section of the file */ 137#define DT_NULL 0 138#define DT_NEEDED 1 139#define DT_PLTRELSZ 2 140#define DT_PLTGOT 3 141#define DT_HASH 4 142#define DT_STRTAB 5 143#define DT_SYMTAB 6 --- 1409 unchanged lines hidden --- | 138/* This is the info that is needed to parse the dynamic section of the file */ 139#define DT_NULL 0 140#define DT_NEEDED 1 141#define DT_PLTRELSZ 2 142#define DT_PLTGOT 3 143#define DT_HASH 4 144#define DT_STRTAB 5 145#define DT_SYMTAB 6 --- 1409 unchanged lines hidden --- |