21 lines
197 B
Plaintext
21 lines
197 B
Plaintext
|
MEMORY
|
||
|
{
|
||
|
flash : ORIGIN = 0x00000000,
|
||
|
LENGTH = 0x00100000
|
||
|
}
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text :
|
||
|
{
|
||
|
stext = . ;
|
||
|
*(.text)
|
||
|
etext = . ;
|
||
|
} > flash
|
||
|
.data :
|
||
|
{
|
||
|
*(.data)
|
||
|
edata = . ;
|
||
|
} > flash
|
||
|
}
|