mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-12 17:47:19 +03:00
22 lines
296 B
Plaintext
22 lines
296 B
Plaintext
OUTPUT_FORMAT(binary)
|
|
ENTRY(main)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x7c00;
|
|
|
|
.text : {
|
|
bootsect_begin = .;
|
|
KEEP(*(.early_boot*))
|
|
KEEP(*(.text*))
|
|
}
|
|
|
|
.data : {
|
|
KEEP(*(.data*))
|
|
KEEP(*(.bss*))
|
|
. += 510 - (. - bootsect_begin);
|
|
SHORT(0xaa55)
|
|
}
|
|
|
|
}
|