Delete Home/LimineCFGMake.ZC

This commit is contained in:
TomAwezome 2022-10-16 17:22:52 -04:00
parent 5ec66b9dad
commit fc2e17e756

View file

@ -1,27 +0,0 @@
CDoc *doc = DocNew("C:/Boot/Limine.CFG");
// Limine interface settings
DocPrint(doc,
"TIMEOUT=2\n"
"INTERFACE_RESOLUTION=1024x768\n\n");
// C: drive
DocPrint(doc, ":ZealOS C:/\n"
"PROTOCOL=limine\n"
"RESOLUTION=1024x768\n"
"KERNEL_PATH=boot://1/Boot/ZealBooter.ELF\n"
"MODULE_PATH=boot://1/Boot/Kernel.ZXE\n"
"\n");
// D: drive
DocPrint(doc, ":ZealOS D:/\n"
"PROTOCOL=limine\n"
"RESOLUTION=1024x768\n"
"KERNEL_PATH=boot://2/Boot/ZealBooter.ELF\n"
"MODULE_PATH=boot://2/Boot/Kernel.ZXE\n"
"\n");
DocWrite(doc);
DocDel(doc);