git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
formated code and fix include error in interrupts.c
[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
}