op.snowstorm/src/arch/i686/linker.ld
2025-11-12 16:16:50 +01:00

30 lines
653 B
Plaintext

ENTRY(_start)
SECTIONS
{
/* Leave 1 Megabyte for GRUB */
. = 1M;
.multiboot.data :
{
*(.multiboot.data) /* Take the data from label .multiboot.data from all files and put it in our output file */
}
.multiboot.text :
{
*(.multiboot.text) /* Take the data from label .multiboot.data from all files and put it in our output file */
}
.bss :
{
*(.bss) /* Take the data from label .multiboot.data from all files and put it in our output file */
}
.data :
{
*(.data) /* Take the data from label .multiboot.data from all files and put it in our output file */
}
}