link.sct 904 字节
Newer Older
T
thread-liu 已提交
1 2 3 4 5 6 7 8 9 10
; *************************************************************
; *** Scatter-Loading Description                           ***
; *************************************************************

LR_VECTORS 0x00000000 0x00000400  {    ; load region size_region
  .isr_vector +0 {
    startup*.o (RESET, +First)
  }
}

11 12
LR_IROM1 0x10000000 0x00030000  {      ; load region size_region
  ER_IROM1 0x10000000 0x00030000  {    ; load address = execution address
T
thread-liu 已提交
13 14 15 16
    *(InRoot$$Sections)
    .ANY (+RO)
    .ANY (+XO)
  }
17
  RW_IRAM1 0x10030000 0x00010000  {    ; RW data
T
thread-liu 已提交
18 19 20 21
    .ANY (+RW +ZI)
  }
  
  
22 23 24 25 26
; *****   Create region for OPENAMP                               *****
; ***     These 4 lines can be commented if OPENAMP is not used     *****
  .resource_table +0 ALIGN 4 {         ; resource table
    *(.resource_table)
  }  __OpenAMP_SHMEM__ 0x10040000 EMPTY 0x8000 {} ; Shared Memory area used by OpenAMP
T
thread-liu 已提交
27
}