corn/src/arch/amd64/linker.ld

30 lines
346 B
Text
Raw Normal View History

2024-01-27 03:29:49 +00:00
ENTRY(start)
SECTIONS {
. = 1M;
2024-01-29 00:22:09 +00:00
kernel_start = .;
2024-01-27 03:29:49 +00:00
.boot BLOCK(4K) : ALIGN(4K)
{
*(.multiboot)
}
.rodata BLOCK(4K) : ALIGN(4K)
{
*(.rodata)
}
.text BLOCK(4K) : ALIGN(4K)
{
*(.text)
}
.bss BLOCK(4K) : ALIGN(4K)
{
*(.bss)
}
2024-01-29 00:22:09 +00:00
kernel_end = .;
2024-01-27 03:29:49 +00:00
}