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

SECTIONS {
  .text : {
    *(.entry)
    *(.text)
  } >SRAM AT>FLASH
}