stm32f07XxB_flash.ld 418 B

12345678910111213141516
  1. /******************************************************************************
  2. *
  3. * stm32F07XxB_flash.ld - linker script for nutos on cortex-m0 STM32F07XxB
  4. *
  5. *****************************************************************************/
  6. ENTRY(NutInit)
  7. SEARCH_DIR(.)
  8. MEMORY
  9. {
  10. FLASH0 (rx) : ORIGIN = 0x08000000, LENGTH = 128K
  11. SRAM0 (rwx) : ORIGIN = 0x20000000, LENGTH = 16K
  12. }
  13. INCLUDE stm32f10x_flash.ld