mirror of
https://github.com/pixelyblah/florid-os.git
synced 2026-05-15 03:36:07 +00:00
11 lines
No EOL
201 B
Text
11 lines
No EOL
201 B
Text
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0xffffffff80000000;
|
|
|
|
.text : { *(.text .text.*) }
|
|
.rodata : { *(.rodata .rodata.*) }
|
|
.data : { *(.data .data.*) }
|
|
.bss : { *(.bss .bss.*) *(COMMON) }
|
|
} |