├── README.md ├── doc ├── ELF for the ARM Architecture.pdf └── ELF_Format.pdf ├── src ├── elfs.h ├── main.c ├── main.h └── runner.s ├── testbin ├── test1.o ├── test2.o └── test3.o └── testsrc ├── test1.s ├── test2.s └── test3.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markic/linker-and-loader/HEAD/README.md -------------------------------------------------------------------------------- /doc/ELF for the ARM Architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markic/linker-and-loader/HEAD/doc/ELF for the ARM Architecture.pdf -------------------------------------------------------------------------------- /doc/ELF_Format.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markic/linker-and-loader/HEAD/doc/ELF_Format.pdf -------------------------------------------------------------------------------- /src/elfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markic/linker-and-loader/HEAD/src/elfs.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markic/linker-and-loader/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markic/linker-and-loader/HEAD/src/main.h -------------------------------------------------------------------------------- /src/runner.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markic/linker-and-loader/HEAD/src/runner.s -------------------------------------------------------------------------------- /testbin/test1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markic/linker-and-loader/HEAD/testbin/test1.o -------------------------------------------------------------------------------- /testbin/test2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markic/linker-and-loader/HEAD/testbin/test2.o -------------------------------------------------------------------------------- /testbin/test3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markic/linker-and-loader/HEAD/testbin/test3.o -------------------------------------------------------------------------------- /testsrc/test1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markic/linker-and-loader/HEAD/testsrc/test1.s -------------------------------------------------------------------------------- /testsrc/test2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markic/linker-and-loader/HEAD/testsrc/test2.s -------------------------------------------------------------------------------- /testsrc/test3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markic/linker-and-loader/HEAD/testsrc/test3.c --------------------------------------------------------------------------------