Files
Custom-Operating-System/build/boot/x86/boot_link.ld

42 lines
379 B
Plaintext
Raw Normal View History

2025-02-12 09:54:05 -05:00
_pa_base = 0x1000;
ENTRY(_pa_base)
SECTIONS
{
. = _pa_base;
bootloader_start = .;
.text ALIGN(4K) :
{
*(.xos_boot_text)
*(.text)
*(.text.*)
}
.rodata :
{
*(.rodata)
*(.rodata.*)
}
.data :
{
*(.data)
*(.data.*)
}
.bss :
{
*(.bss)
*(.bss.*)
*(COMMON)
}
.stack ALIGN(4K) :
{
STACK_PHYZ_BASE = .;
. += 0x1000;
STACK_PHYZ_TOP = .;
}
}