├── .gitignore ├── README.md ├── elf32 ├── Makefile └── elf32.asm ├── elf64 ├── Makefile ├── elf64.asm └── elf64.tags ├── hello ├── Makefile ├── hello_32.asm ├── hello_64.asm └── hello_elf32.asm ├── img ├── elf_dissection.png └── elf_structure.png └── lib ├── Makefile ├── lib_32.asm └── lib_elf32.asm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/README.md -------------------------------------------------------------------------------- /elf32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/elf32/Makefile -------------------------------------------------------------------------------- /elf32/elf32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/elf32/elf32.asm -------------------------------------------------------------------------------- /elf64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/elf64/Makefile -------------------------------------------------------------------------------- /elf64/elf64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/elf64/elf64.asm -------------------------------------------------------------------------------- /elf64/elf64.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/elf64/elf64.tags -------------------------------------------------------------------------------- /hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/hello/Makefile -------------------------------------------------------------------------------- /hello/hello_32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/hello/hello_32.asm -------------------------------------------------------------------------------- /hello/hello_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/hello/hello_64.asm -------------------------------------------------------------------------------- /hello/hello_elf32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/hello/hello_elf32.asm -------------------------------------------------------------------------------- /img/elf_dissection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/img/elf_dissection.png -------------------------------------------------------------------------------- /img/elf_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/img/elf_structure.png -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/lib_32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/lib/lib_32.asm -------------------------------------------------------------------------------- /lib/lib_elf32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mewmew/dissection/HEAD/lib/lib_elf32.asm --------------------------------------------------------------------------------