comparison cos/hello/hello.ld @ 25:d3c4bf3720a3

Beginning of multitasking
author windel
date Tue, 27 Dec 2011 13:31:38 +0100
parents
children
comparison
equal deleted inserted replaced
24:d8627924d40d 25:d3c4bf3720a3
1 OUTPUT_FORMAT("binary")
2
3 SECTIONS {
4 .text 0x100000:
5 {
6 *(.text)
7 }
8
9 .rodata ALIGN (4096) :
10 {
11 *(.rodata)
12 }
13
14 .data ALIGN (4096) :
15 {
16 *(.data)
17 }
18
19 .bss : {
20 *(.bss)
21 }
22
23 }
24