blob: b47534f18740dcfd12b672911240026657f7480a (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* Memory layout for MCXA276 - RAM execution with cortex-m-rt */
MEMORY
{
/* FLASH and RAM overlap for RAM-execution experiments. */
FLASH : ORIGIN = 0x20000000, LENGTH = 128K
/* RAM overlaps FLASH */
RAM : ORIGIN = 0x20000000, LENGTH = 128K
}
/* Leave symbol and section boundary definitions to cortex-m-rt's link.x. */
|