mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-20 07:57:49 +00:00
25 lines
358 B
Plaintext
25 lines
358 B
Plaintext
ENTRY(start)
|
|
|
|
SECTIONS {
|
|
. = 1M;
|
|
|
|
.boot :
|
|
{
|
|
/* ensure that the multiboot header is at the beginning */
|
|
KEEP(*(.multiboot_header))
|
|
}
|
|
|
|
.text :
|
|
{
|
|
*(.text .text.*)
|
|
}
|
|
|
|
.rodata : {
|
|
*(.rodata .rodata.*)
|
|
}
|
|
|
|
.data.rel.ro : {
|
|
*(.data.rel.ro.local*) *(.data.rel.ro .data.rel.ro.*)
|
|
}
|
|
}
|