├── .gitignore ├── Makefile ├── README.md ├── bochsrc ├── boot.c ├── boot.ld ├── io.c └── io.ld /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjiwa/x86-boot-sector-c/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjiwa/x86-boot-sector-c/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjiwa/x86-boot-sector-c/HEAD/README.md -------------------------------------------------------------------------------- /bochsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjiwa/x86-boot-sector-c/HEAD/bochsrc -------------------------------------------------------------------------------- /boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjiwa/x86-boot-sector-c/HEAD/boot.c -------------------------------------------------------------------------------- /boot.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjiwa/x86-boot-sector-c/HEAD/boot.ld -------------------------------------------------------------------------------- /io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjiwa/x86-boot-sector-c/HEAD/io.c -------------------------------------------------------------------------------- /io.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjiwa/x86-boot-sector-c/HEAD/io.ld --------------------------------------------------------------------------------