aboutsummaryrefslogtreecommitdiff
path: root/octedit/pico_persist.ld
blob: 9c37aba7cd5d57cf0ed4d2e960b61b00264b0e39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
MEMORY {
  FLASH(rx) : ORIGIN = 0x10000000, LENGTH = 2M
  SRAM(rx) : ORIGIN = 0x20041f00, LENGTH = 256
}

SECTIONS {
  .text : {
    *(.entry);
    *(.text);
    . = 252;
    *(.stage_2_crc);
  } >SRAM AT>FLASH
}