limine/src/linker.ld

29 lines
337 B
Plaintext
Raw Normal View History

2019-05-15 07:08:56 +03:00
OUTPUT_FORMAT(binary)
ENTRY(main)
SECTIONS
{
2020-01-21 13:42:17 +03:00
. = 0x8000;
2019-05-15 07:08:56 +03:00
.text : {
bootsect_begin = .;
KEEP(*(.entry*))
2020-01-21 13:42:17 +03:00
*(.text*)
}
.rodata : {
*(.rodata*)
2019-05-15 07:08:56 +03:00
}
.data : {
2020-01-21 13:42:17 +03:00
*(.data*)
}
.bss : {
bss_begin = .;
2020-01-22 02:56:20 +03:00
*(COMMON)
2020-01-21 13:42:17 +03:00
*(.bss*)
bss_end = .;
2019-05-15 07:08:56 +03:00
}
}