stm32f302xC_flash.ld 481 B

12345678910111213141516171819
  1. /******************************************************************************
  2. *
  3. * stm32f302xC_flash.ld - linker script for nutos on cortex-m3 STM32F302xC,
  4. * STM32F373xC and STM32F383xC
  5. *
  6. *****************************************************************************/
  7. ENTRY(NutInit)
  8. SEARCH_DIR(.)
  9. "bootloader_offset" = 0x00;
  10. MEMORY
  11. {
  12. FLASH0 (rx) : ORIGIN = 0x08000000, LENGTH = 256K
  13. SRAM0 (rwx) : ORIGIN = 0x20000000, LENGTH = 32K
  14. }
  15. INCLUDE stm32f10x_flash.ld