circuitpython/ports/atmel-samd/boards/samd51x20-external-flash.ld
2019-10-20 23:50:12 -04:00

13 lines
242 B
Plaintext

/*
GNU linker script for SAMD51x20 (1MB flash, 256K RAM)
*/
/* Specify the memory areas */
MEMORY
{
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 1M - 8K
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 256K
}
INCLUDE "samd51-common.ld"