10 lines
154 B
Text
10 lines
154 B
Text
MEMORY
|
|
{
|
|
region : ORIGIN = 0x40000000, LENGTH = 8M
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : ALIGN (4) { *(.text) } > region
|
|
.rodata : ALIGN (4) { *(.rodata) } > region
|
|
}
|