aboutsummaryrefslogtreecommitdiff
path: root/assembler/pico_ram_only.ld
blob: eb2450ed5d006dc8d9797bd69e5b7810f5566435 (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 = 0x20000000, LENGTH = 264K
}

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