代码搜索:ELF
找到约 10,000 项符合「ELF」的源代码
代码结果 10,000
www.eeworm.com/read/221695/14728801
h elf.h
#ifndef _ELF_H
#define _ELF_H
/* THese constants are for the segment types stored in the image headers */
#define PT_NULL 0
#define PT_LOAD 1
#define PT_DYNAMIC 2
#define PT_INTERP 3
#
www.eeworm.com/read/221219/14753160
h elf.h
#ifndef ELF_H
#define ELF_H
#define EI_NIDENT 16 /* Size of e_ident array. */
/* Values for e_type. */
#define ET_NONE 0 /* No file type */
#define ET_REL 1 /* Relocatable file */
#define ET_EXEC
www.eeworm.com/read/221218/14753256
h elf.h
#ifndef ELF_H
#define ELF_H
#define EI_NIDENT 16 /* Size of e_ident array. */
/* Values for e_type. */
#define ET_NONE 0 /* No file type */
#define ET_REL 1 /* Relocatable file */
#define ET_EXEC
www.eeworm.com/read/121010/14775107
elf kos.elf
www.eeworm.com/read/121010/14775593
elf sound.elf
www.eeworm.com/read/220905/14784225
elf blinky.elf
www.eeworm.com/read/220130/14851518
elf memory.elf
www.eeworm.com/read/220127/14851926
elf virtualcom.elf
www.eeworm.com/read/219243/14890567
elf gps.elf
www.eeworm.com/read/219019/14897775
h elf.h
// Format of an ELF executable file
#define ELF_MAGIC 0x464C457FU // "\x7FELF" in little endian
// File header
struct elfhdr {
uint magic; // must equal ELF_MAGIC
uchar elf[12];
ushort type;