repo.or.cz
/
pfinal.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
initial commit
[pfinal.git]
/
Routix
/
tareas
/
fork2
/
tarea.ld
blob
706c3cb367cb477097153d46798539a0df770704
1
OUTPUT_FORMAT(coff-go32)
2
ENTRY(_main)
3
4
SECTIONS {
5
6
.text 0x80000000 :
7
{
8
*.o(.text)
9
}
10
11
__code_size = SIZEOF (.text);
12
13
.data 0x88000000 : AT (ADDR (.text) + SIZEOF (.text) )
14
{
15
*.o(.data)
16
}
17
18
__data_size = SIZEOF (.data);
19
20
.bss :
21
{
22
*.o(.bss)
23
}
24
25
.comment :
26
{
27
*(.comment)
28
}
29
30
}