1; *************************************************************
2; *** Scatter-Loading Description                           ***
3; *************************************************************
4
5LR_VECTORS 0x00000000 0x00000400  {    ; load region size_region
6  .isr_vector +0 {
7    startup*.o (RESET, +First)
8  }
9}
10
11LR_IROM1 0x10000000 0x00030000  {      ; load region size_region
12  ER_IROM1 0x10000000 0x00030000  {    ; load address = execution address
13    *(InRoot$$Sections)
14    .ANY (+RO)
15    .ANY (+XO)
16  }
17  RW_IRAM1 0x10030000 0x00010000  {    ; RW data
18    .ANY (+RW +ZI)
19  }
20
21
22; *****   Create region for OPENAMP                               *****
23; ***     These 4 lines can be commented if OPENAMP is not used     *****
24  .resource_table +0 ALIGN 4 {         ; resource table
25    *(.resource_table)
26  }  __OpenAMP_SHMEM__ 0x10040000 EMPTY 0x8000 {} ; Shared Memory area used by OpenAMP
27}
28