trios/linker.ld

26 lines
221 B
Plaintext
Raw Normal View History

2023-04-19 03:44:10 +00:00
ENTRY(start)
SECTIONS {
. = 1M;
.boot :
{
*(.multiboot_header)
}
.rodata :
{
*(.rodata)
}
.bss :
{
*(.bss)
}
.text :
{
*(.text)
}
}