re-factored the makefile and improved qemu debug experience.
[lunaix-os.git] / lunaix-os / linker.ld
1 ENTRY(start_)
2
3 SECTIONS {
4     . = 0x100000;
5
6     .text BLOCK(4K) : {
7         * (.multiboot)
8         * (.text)
9     }
10
11     .bss BLOCK(4K) : {
12         * (COMMON)
13         * (.bss)
14     }
15
16     .data BLOCK(4k) : {
17         * (.data)
18     }
19
20     .rodata BLOCK(4K) : {
21         * (.rodata)
22     }
23 }