repo.or.cz
/
kugel-rb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Quickscreen: add more check for case that qs item is not set.
[kugel-rb.git]
/
flash
/
minimon
/
minimon.lds
blob
14150b21234cd5f59b97854b382cc4ee88f79777
1
OUTPUT_FORMAT(elf32-sh)
2
INPUT(minimon.o)
3
4
MEMORY
5
{
6
IRAM : ORIGIN = 0x0FFFF000, LENGTH = 0x500
7
}
8
9
SECTIONS
10
{
11
.startvector :
12
{
13
*(.startvector)
14
. = ALIGN(0x4);
15
} > IRAM
16
17
.got :
18
{
19
*(.got)
20
} > IRAM
21
22
.got.plt :
23
{
24
*(.got.plt)
25
} > IRAM
26
27
.rela.got :
28
{
29
*(.rela.got)
30
} > IRAM
31
32
.text :
33
{
34
. = ALIGN(0x200);
35
*(.entry)
36
*(.text)
37
. = ALIGN(0x4);
38
} > IRAM
39
40
.data :
41
{
42
*(.data)
43
} > IRAM
44
45
.rodata :
46
{
47
*(.rodata)
48
. = ALIGN(0x4);
49
} > IRAM
50
51
.bss :
52
{
53
*(.bss)
54
} > IRAM
55
56
.stack :
57
{
58
*(.stack)
59
} > IRAM
60
}