aboutsummaryrefslogtreecommitdiff
path: root/assembler/pico_bin.ld
blob: 305950126cd004b3185ed8693579a9f4704e063f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
ENTRY(main)

MEMORY {
  FLASH(rx) : ORIGIN = 0x10000000, LENGTH = 2M
  SRAM(rwx) : ORIGIN = 0x20001000, LENGTH = 260K
}

SECTIONS {
  .text : {
    *(.text);
    . = ALIGN(4);
  } > SRAM
}