You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
386 B
Plaintext
13 lines
386 B
Plaintext
4 years ago
|
/* Linker script to configure memory regions.
|
||
|
* Need modifying for a specific board.
|
||
|
* FLASH.ORIGIN: starting address of flash
|
||
|
* FLASH.LENGTH: length of flash
|
||
|
* RAM.ORIGIN: starting address of RAM bank 0
|
||
|
* RAM.LENGTH: length of RAM bank 0
|
||
|
*/
|
||
|
MEMORY
|
||
|
{
|
||
|
FLASH (rx) : ORIGIN = 0x0, LENGTH = 0x20000 /* 128K */
|
||
|
RAM (rwx) : ORIGIN = 0x10000000, LENGTH = 0x2000 /* 8K */
|
||
|
}
|