comparison cos/kernel/kernel.ld @ 36:91f91ff07ea8

Removed test variables
author windel
date Mon, 16 Jan 2012 20:47:05 +0100
parents cos/kernel/link.ld@bcb3b68c8147
children
comparison
equal deleted inserted replaced
35:bcb3b68c8147 36:91f91ff07ea8
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 load_end_address = .;
20 .bss : {
21 *(.bss)
22 }
23
24 bss_end_address = .;
25 kernel_end = .;
26 }
27