Files
2022-02-17 11:37:06 +01:00

21 lines
720 B
Plaintext

MEMORY /* Logical */
{
/* Generic Logical Address (Virtual Memory Address) Spaces */
TEXT (RX) :
/* Code Address Space */
ORIGIN = 0x0000000200000000 /* NOTE: this value must be aligned with __MRK3_MEM_TYPE_CODE */ , LENGTH = 0x10000000
DATA (RW) :
/* Data Address Space */
ORIGIN = 0x0000000100000000 /* NOTE: this value must be aligned with __MRK3_MEM_TYPE_DATA */ , LENGTH = 0x10000000
}
MEMORY /* Physical */
{
/* Generic Physical Address (Load Memory Address) Spaces */
LMA_GENERIC (RX) :
ORIGIN = 0, LENGTH = 600M /* This length has to be
above the sum of memory space on the device. As we
allow for sections to be loaded at different times. */
}