rulimine/common/sbat.c

16 lines
397 B
C
Raw Normal View History

#if uefi == 1
2021-06-25 02:23:26 +03:00
2022-02-21 01:14:14 +03:00
#include <config.h>
2021-06-25 02:23:26 +03:00
asm (
2022-04-25 00:30:28 +03:00
".section .data.sbat\n\t"
"sbat:\n\t"
2021-06-25 02:23:26 +03:00
".ascii \"sbat,1,SBAT Version,sbat,1,https://github.com/rhboot/shim/blob/main/SBAT.md\\n\"\n\t"
".ascii \"limine,1,Limine,limine," LIMINE_VERSION ",https://limine-bootloader.org\\n\"\n\t"
2022-04-25 00:30:28 +03:00
"__sbat_endv:\n\t"
".global __sbat_sizev\n\t"
".set __sbat_sizev, __sbat_endv - sbat\n\t"
2021-06-25 02:23:26 +03:00
);
#endif