├── .gitignore ├── Makefile ├── README.md ├── com.ld ├── hello.asm └── loader.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.com 2 | *.elf 3 | *.o 4 | loader 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avian2/linux-com-loader/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avian2/linux-com-loader/HEAD/README.md -------------------------------------------------------------------------------- /com.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avian2/linux-com-loader/HEAD/com.ld -------------------------------------------------------------------------------- /hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avian2/linux-com-loader/HEAD/hello.asm -------------------------------------------------------------------------------- /loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avian2/linux-com-loader/HEAD/loader.c --------------------------------------------------------------------------------