alcedo/linker.ld

31 lines
314 B
Plaintext
Raw Normal View History

/* http://wiki.osdev.org/Bare_Bones#Linking_the_Kernel */
ENTRY(_start)
2017-10-20 22:04:42 +01:00
SECTIONS
{
. = 1M;
2017-10-20 22:04:42 +01:00
.text BLOCK(4K) : ALIGN(4K)
{
*(.multiboot)
*(.text)
}
2017-10-20 22:04:42 +01:00
.rodata BLOCK(4K) : ALIGN(4K)
{
*(.rodata)
}
2017-10-20 22:04:42 +01:00
.data BLOCK(4K) : ALIGN(4K)
{
*(.data)
}
.bss BLOCK(4K) : ALIGN(4K)
{
*(COMMON)
*(.bss)
}
2017-10-20 22:04:42 +01:00
}