This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
portland-os/src/kernel/link.ld

9 lines
No EOL
264 B
Text

ENTRY(_start)
SECTIONS {
. = 0x01000000;
.mb_header : ALIGN(8) { *(.mb_header) }
.text : ALIGN(512) { *(.text) }
.rodata : ALIGN(512) { *(.rodata) }
.data : ALIGN(512) { *(.data) }
.bss : ALIGN(512) { *(.bss) }
}