Merge branch 'master' of github.com:Minep/lunaix-os
[lunaix-os.git] / lunaix-os / usr / link-usr.ld
1 ENTRY(_start)
2
3 SECTIONS {
4     . = 0x400000;
5
6     .text BLOCK(4K) : {
7         *(.text)
8     }
9
10     .data BLOCK(4K) : {
11         *(.data)
12     }
13
14     .ro.data BLOCK(4K) : {
15         *(.ro.data)
16     }
17
18     .bss BLOCK(4K) : {
19         *(.bss)
20     }
21 }