13 lines
249 B
Plaintext
13 lines
249 B
Plaintext
/* Linker script for SolarLader: STM32F0K6T6*/
|
|
|
|
/* Define memory regions. */
|
|
MEMORY
|
|
{
|
|
rom (rx) : ORIGIN = 0x08000000, LENGTH = 32K
|
|
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 4K
|
|
}
|
|
|
|
/* Include the common ld script. */
|
|
INCLUDE libopencm3_stm32f0.ld
|
|
|