mirror of
https://github.com/eddyem/stm32samples.git
synced 2025-12-06 10:45:11 +03:00
13 lines
259 B
Plaintext
13 lines
259 B
Plaintext
/* Linker script for STM32F030f4, 16K flash, 4K RAM. */
|
|
|
|
/* Define memory regions. */
|
|
MEMORY
|
|
{
|
|
rom (rx) : ORIGIN = 0x08000000, LENGTH = 16K
|
|
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 4K
|
|
}
|
|
|
|
/* Include the common ld script. */
|
|
INCLUDE stm32f01234.ld
|
|
|