blob: 2abbaebf543ba8d5c78f81b50306562b731f8549 [file] [log] [blame]
swissChilid8137922021-02-17 15:34:07 -08001ENTRY(start)
2SECTIONS
3{
4 .text 0x100000 :
5 {
6 code = .; _code = .; __code = .;
7 *(.text)
8 . = ALIGN(4096);
9 }
10
11 .data :
12 {
13 data = .; _data = .; __data = .;
14 *(.data)
15 *(.rodata)
16 . = ALIGN(4096);
17 }
18
19 .bss :
20 {
21 bss = .; _bss = .; __bss = .;
22 *(.bss)
23 . = ALIGN(4096);
24 }
25
26 end = .; _end = .; __end = .;
27}