aboutsummaryrefslogtreecommitdiff
path: root/octedit/pico_persist.ld
blob: 14caad748fedee96bbe495557841e4f847b692d5 (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 = 252
}

SECTIONS {
  .text : {
    setup.o(.text);
    octedit.o(.text);
    uart.o(.text);
    . = LENGTH(SRAM);
  } >SRAM AT>FLASH
}