2017-10-18 16:07:38 -04:00
|
|
|
/*
|
2018-02-09 10:06:14 -05:00
|
|
|
GNU linker script for SAMD51x20 (1MB flash, 256K RAM)
|
2017-10-18 16:07:38 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Specify the memory areas */
|
|
|
|
MEMORY
|
|
|
|
{
|
2018-04-12 21:13:40 -04:00
|
|
|
/* Leave 16KiB for the bootloader, 512k for the filesystem and 8k for user config data. */
|
|
|
|
FLASH (rx) : ORIGIN = 0x00000000 + 16K, LENGTH = 1M - 16K - 512K - 8K
|
2018-02-09 10:06:14 -05:00
|
|
|
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 256K
|
2017-10-18 16:07:38 -04:00
|
|
|
}
|
2019-10-20 23:50:12 -04:00
|
|
|
INCLUDE "samd51-common.ld"
|