blob: 45bee5e7b8c95ce07696aa8c5f3a9ec5247c718d (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
ENTRY(_start)
SECTIONS
{
/* 0b10101010101000000000000000000000 */
. = 0xaaa00000;
/* For some reason ld warns when _start is not defined. */
/* Other .elf files link ok - only PL0_test.elf seems to */
/* expect _start to be deifned. */
_start = .;
__start = .;
__text_start = .;
.text :
{
/* have entry point at the beginning */
KEEP(*(.text.PL0main))
*(.text)
}
. = ALIGN(4096); /* align to page size */
__text_end = .;
__rodata_start = .;
.rodata :
{
*(.rodata)
}
. = ALIGN(4096); /* align to page size */
__rodata_end = .;
__data_start = .;
.data :
{
*(.data)
}
. = ALIGN(4096); /* align to page size */
__data_end = .;
__bss_start = .;
.bss :
{
bss = .;
*(.bss)
}
. = ALIGN(4096); /* align to page size */
__bss_end = .;
__bss_size = __bss_end - __bss_start;
__end = .;
}
|