comparison linker.ld @ 0:99db6262c157

initial commit with code from http://wiki.osdev.org/Bare_bones
author meillo@marmaro.de
date Sun, 01 Nov 2009 23:50:00 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:99db6262c157
1 ENTRY (loader)
2
3 SECTIONS{
4 . = 0x00200000;
5
6 .multiboot :{
7 *(.multiboot)
8 }
9
10 .text :{
11 *(.text)
12 }
13
14 .rodata : {
15 *(.rodata)
16 }
17
18 .data : {
19 *(.data)
20 }
21
22 .bss : {
23 sbss = .;
24 *(COMMON)
25 *(.bss)
26 ebss = .;
27 }
28 }