Skip to content
Snippets Groups Projects
Commit 18890751 authored by Le10.Anh@live.uwe.ac.uk's avatar Le10.Anh@live.uwe.ac.uk
Browse files

Update file link.ld

parent 2bfc6618
Branches
No related tags found
No related merge requests found
ENTRY(loader) /* name of the entry label */
SECTIONS {
. = 0x00100000; /* code will be loaded at 1 MB */
.text ALIGN(0x1000) : { *(.text) } /* aligned at 4 KB */
.rodata ALIGN(0x1000) : { *(.rodata) } /* aligned at 4 KB */
.data ALIGN(0x1000) : { *(.data) } /* aligned at 4 KB */
.bss ALIGN(0x1000) : { *(COMMON) *(.bss) } /* aligned at 4 KB */
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment