stm32f303xC_flash.ld 496 B

12345678910111213141516171819
  1. /******************************************************************************
  2. *
  3. * stm32f303xC_flash.ld - linker script for nutos on STM32F303xC/313xC
  4. *
  5. *****************************************************************************/
  6. ENTRY(NutInit)
  7. SEARCH_DIR(.)
  8. "bootloader_offset" = 0x00;
  9. MEMORY
  10. {
  11. FLASH0 (rx) : ORIGIN = 0x08000000, LENGTH = 256K
  12. SRAM0 (rwx) : ORIGIN = 0x20000000, LENGTH = 40K
  13. CCM (rwx) : ORIGIN = 0x10000000, LENGTH = 8K
  14. }
  15. INCLUDE stm32f10x_flash.ld