aboutsummaryrefslogtreecommitdiffhomepage
path: root/targets/thingplus-rp2040.ld
blob: 5e49f3b8380a0b3b6ea7571b6ae35ce36e95d54c (plain)
1
2
3
4
5
6
7
8
9
10

MEMORY
{
    /* Reserve exactly 256 bytes at start of flash for second stage bootloader */
    BOOT2_TEXT (rx) : ORIGIN = 0x10000000, LENGTH = 256
    FLASH_TEXT (rx) : ORIGIN = 0x10000000 + 256, LENGTH = 16384K - 256
    RAM (rwx)       : ORIGIN = 0x20000000, LENGTH = 256k
}

INCLUDE "targets/rp2040.ld"