FENIX_kernel/arch/i386/linker.ld

25 lines
288 B
Plaintext
Raw Normal View History

2020-12-02 03:01:11 +00:00
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)
}
}