blob: aeb89744472aef5a4139966bc6faa3e1c115eef9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
MEMORY {
kload : ORIGIN = 0x01000000, LENGTH = 0x01000000
}
SECTIONS {
. = 0x01000000;
.text : {
_start = .;
*(.text)
} >kload
.rodata : { *(.rodata) } >kload
.data : { *(.data) *(.bss) } >kload
}
|