aboutsummaryrefslogtreecommitdiffstats
path: root/memory.x
blob: 56c58def1207531e31ef1bbe2af5fac38c526a41 (plain)
1
2
3
4
5
6
7
8
9
10
/* Linker script for the STM32F303VCT6 */
MEMORY
{
  CCRAM : ORIGIN = 0x10000000, LENGTH = 8K
  FLASH : ORIGIN = 0x08000000, LENGTH = 256K
  RAM : ORIGIN = 0x20000000, LENGTH = 40K
}

/* _stack_start = ORIGIN(CCRAM) + LENGTH(CCRAM); */
_stack_start = ORIGIN(RAM) + LENGTH(RAM);