FENIX_kernel/arch/i386/linker.ld
2020-12-01 21:01:11 -06:00

24 lines
288 B
Text
Executable file

ENTRY(_start)
SECTIONS
{
. = 1M;
.text BLOCK (4K) : ALIGN (4K) {
*(.multiboot)
*(.text)
}
.rodata BLOCK (4K) : ALIGN (4K) {
*(.rodata)
}
.data BLOCK (4K) : ALIGN (4K) {
*(.data)
}
.bss BLOCK (4K) : ALIGN (4K) {
*(COMMON)
*(.bss)
}
}