stm32f107xC_ram.ld 444 B

123456789101112131415161718
  1. /******************************************************************************
  2. *
  3. * stm32f107xC_flash.ld - linker script for nutos on cotrex-m3 STM32F107xC
  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 = 64K
  13. }
  14. INCLUDE stm32f10x_ram.ld