This repository has been archived on 2026-03-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
LiteOS/linker.ld
T
2026-02-27 22:22:48 +02:00

28 lines
236 B
Plaintext

ENTRY(_start)
SECTIONS
{
. = 1M;
.text :
{
*(.multiboot)
*(.text*)
}
.rodata :
{
*(.rodata*)
}
.data :
{
*(.data*)
}
.bss :
{
*(.bss*)
}
}