repo.or.cz
/
tigris.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add linker and vga driver, working hello, world
[tigris.git]
/
stage1
/
link.ld
blob
8cd6d694af1812ec39bfe02e307f019339066306
1
ENTRY (_start)
2
3
SECTIONS
4
{
5
. = 1M;
6
7
.text BLOCK(4K) : ALIGN(4K)
8
{
9
*(.multiboot)
10
*(.text)
11
}
12
13
.rodata BLOCK(4K) : ALIGN(4K)
14
{
15
*(.rodata)
16
}
17
18
.data BLOCK(4K) : ALIGN(4K)
19
{
20
*(.data)
21
}
22
23
.bss BLOCK(4K) : ALIGN(4K)
24
{
25
*(COMMON)
26
*(.bss)
27
}
28
}