start of STM32 programming (very-very pre-alpha version)

This commit is contained in:
eddyem
2017-12-05 22:12:09 +03:00
parent a6e198ec78
commit 22d195d38b
26 changed files with 11244 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
/* 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 stm32f0.ld