blob: 92de525e934f73d003dc901c2dad0161fbf154fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
SECTIONS {
. = 0x100000;
.text : {
__load_st = .;
*(.head)
*(.text)
}
.rodata : {
*(.rodata)
}
.data : {
*(.data)
__load_en = .;
}
.bss : {
*(.bss)
__bss_en = .;
}
}
|