aboutsummaryrefslogtreecommitdiff
path: root/00-hello/linker_script.ld
blob: fe0c14bec11e3fb0fa8134e3e330327f2337652e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
MEMORY
{
  flash : org = 0x08000000, len = 256k
}

SECTIONS
{
  /* This is where the code goes. */
  . = ORIGIN(flash);
  .text : {
    *(.vectors); /* All .vector sections go here. */
    *(.text);    /* All .text sections go here. */
  } >flash
}