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
make the statusbar update forcable
[kugel-rb.git]
/
flash
/
bootloader
/
bootloader.lds
blob
ecc12689889a11ef48a859631978de2b311688b1
1
OUTPUT_FORMAT(elf32-sh)
2
3
MEMORY
4
{
5
/* the boot ROM uses IRAM at 400-430, stay away and start at 500 */
6
IRAM : ORIGIN = 0x0FFFF500, LENGTH = 0xA00
7
/* and leave some room for stack at the end */
8
}
9
10
SECTIONS
11
{
12
.startvector :
13
{
14
*(.startvector)
15
. = ALIGN(0x4);
16
} > IRAM
17
18
.text :
19
{
20
*(.text)
21
*(.icode)
22
. = ALIGN(0x4);
23
} > IRAM
24
25
.data :
26
{
27
*(.data)
28
} > IRAM
29
30
.bss :
31
{
32
*(.bss)
33
} > IRAM
34
}