blob: caaff1a41ddc790c0356e670e1fb81d08de62cf5 [file] [log] [blame]
Amaury Pouly303c4862011-11-06 19:44:03 +00001ENTRY(start)
2OUTPUT_FORMAT(elf32-littlearm)
3OUTPUT_ARCH(arm)
4
5MEMORY
6{
7 OCRAM : ORIGIN = 0, LENGTH = 0x8000
8}
9
10SECTIONS
11{
12 .text 0 :
13 {
14 *(.text*)
15 } > OCRAM
16}