├── .gitignore ├── LICENSE_1_0.txt ├── README.md ├── dub.json ├── example ├── app.d ├── dub.json └── dub.selections.json └── source └── elf ├── low.d ├── low32.d ├── low64.d ├── meta.d ├── package.d └── sections ├── debugabbrev └── package.d ├── debugline ├── debugline32.d ├── debugline64.d └── package.d ├── package.d ├── stringtable.d └── symboltable.d /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | .dub 3 | *.sublime* 4 | bin/ 5 | -------------------------------------------------------------------------------- /LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/LICENSE_1_0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/README.md -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/dub.json -------------------------------------------------------------------------------- /example/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/example/app.d -------------------------------------------------------------------------------- /example/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/example/dub.json -------------------------------------------------------------------------------- /example/dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/example/dub.selections.json -------------------------------------------------------------------------------- /source/elf/low.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/source/elf/low.d -------------------------------------------------------------------------------- /source/elf/low32.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/source/elf/low32.d -------------------------------------------------------------------------------- /source/elf/low64.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/source/elf/low64.d -------------------------------------------------------------------------------- /source/elf/meta.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/source/elf/meta.d -------------------------------------------------------------------------------- /source/elf/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/source/elf/package.d -------------------------------------------------------------------------------- /source/elf/sections/debugabbrev/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/source/elf/sections/debugabbrev/package.d -------------------------------------------------------------------------------- /source/elf/sections/debugline/debugline32.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/source/elf/sections/debugline/debugline32.d -------------------------------------------------------------------------------- /source/elf/sections/debugline/debugline64.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/source/elf/sections/debugline/debugline64.d -------------------------------------------------------------------------------- /source/elf/sections/debugline/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/source/elf/sections/debugline/package.d -------------------------------------------------------------------------------- /source/elf/sections/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/source/elf/sections/package.d -------------------------------------------------------------------------------- /source/elf/sections/stringtable.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/source/elf/sections/stringtable.d -------------------------------------------------------------------------------- /source/elf/sections/symboltable.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yazd/elf-d/HEAD/source/elf/sections/symboltable.d --------------------------------------------------------------------------------