blob: 09739aee15bd63a2ec709b188f95a68913ceef85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
ENTRY(start)
OUTPUT_FORMAT(elf32-littlearm)
OUTPUT_ARCH(arm)
MEMORY
{
OCRAM : ORIGIN = 0, LENGTH = 0x8000
}
SECTIONS
{
.text 0 :
{
*(.start*)
*(.text*)
} > OCRAM
}
|