Mercurial > lcfOS
comparison cos/kernel/link.ld @ 35:bcb3b68c8147
Added bss end address and load end address to multiboot header
author | windel |
---|---|
date | Mon, 16 Jan 2012 17:38:00 +0100 |
parents | 7e3bdcb391dc |
children |
comparison
equal
deleted
inserted
replaced
34:8012221dd740 | 35:bcb3b68c8147 |
---|---|
14 .data ALIGN (4096) : | 14 .data ALIGN (4096) : |
15 { | 15 { |
16 *(.data) | 16 *(.data) |
17 } | 17 } |
18 | 18 |
19 load_end_address = .; | |
19 .bss : { | 20 .bss : { |
20 *(.bss) | 21 *(.bss) |
21 } | 22 } |
22 | 23 |
24 bss_end_address = .; | |
23 kernel_end = .; | 25 kernel_end = .; |
24 } | 26 } |
25 | 27 |