11 lines
178 B
Plaintext
11 lines
178 B
Plaintext
MEMORY {
|
|
FLASH (RX) : ORIGIN = 0x00820000, LENGTH = 0x100000 /* 4 MB in flash */
|
|
}
|
|
SECTIONS {
|
|
everything : {
|
|
. = ALIGN(4);
|
|
start.o (.text)
|
|
*(.*)
|
|
} >FLASH
|
|
}
|