| 12345678910111213141516 |
- /******************************************************************************
- *
- * stm32f10xB_flash.ld - linker script for nutos on cotrex-m3 STM32F10xB
- *
- *****************************************************************************/
- ENTRY(NutInit)
- SEARCH_DIR(.)
- MEMORY
- {
- FLASH0 (rx) : ORIGIN = 0x08000000, LENGTH = 128K
- SRAM0 (rwx) : ORIGIN = 0x20000000, LENGTH = 16K
- }
- INCLUDE stm32f10x_flash.ld
|