├── .gitignore ├── AddBootOption.h ├── BootSectImage ├── CreateImg.sh ├── GnuGenBootSector ├── IMG.c ├── LICENSE ├── RD.h ├── RD.inf ├── RDBlockIo.c ├── RDMain.c ├── README.md ├── README_CN.md ├── Source └── EFI │ └── HelloWorld.txt ├── bootsect.com ├── data.img └── scorpion.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/.gitignore -------------------------------------------------------------------------------- /AddBootOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/AddBootOption.h -------------------------------------------------------------------------------- /BootSectImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/BootSectImage -------------------------------------------------------------------------------- /CreateImg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/CreateImg.sh -------------------------------------------------------------------------------- /GnuGenBootSector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/GnuGenBootSector -------------------------------------------------------------------------------- /IMG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/IMG.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/LICENSE -------------------------------------------------------------------------------- /RD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/RD.h -------------------------------------------------------------------------------- /RD.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/RD.inf -------------------------------------------------------------------------------- /RDBlockIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/RDBlockIo.c -------------------------------------------------------------------------------- /RDMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/RDMain.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/README_CN.md -------------------------------------------------------------------------------- /Source/EFI/HelloWorld.txt: -------------------------------------------------------------------------------- 1 | AnyThing in here~! 2 | Good Luck 3 | By D1ves 4 | -------------------------------------------------------------------------------- /bootsect.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/bootsect.com -------------------------------------------------------------------------------- /data.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/data.img -------------------------------------------------------------------------------- /scorpion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Error996/Scorpion/HEAD/scorpion.jpg --------------------------------------------------------------------------------