Eryone Ery32 mini (STM32F103VET6) board (#22956)

This commit is contained in:
Augusto Zanellato
2021-10-19 17:24:22 +02:00
committed by Scott Lahteine
parent 30158424e9
commit c9718e1ec0
6 changed files with 233 additions and 2 deletions

View File

@ -0,0 +1,14 @@
MEMORY
{
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 64K - 4K
rom (rx) : ORIGIN = 0x08004000, LENGTH = 512K - 16K
}
/* Provide memory region aliases for common.inc */
REGION_ALIAS("REGION_TEXT", rom);
REGION_ALIAS("REGION_DATA", ram);
REGION_ALIAS("REGION_BSS", ram);
REGION_ALIAS("REGION_RODATA", rom);
/* Let common.inc handle the real work. */
INCLUDE common.inc