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

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