123456789101112131415161718192021222324252627 |
- ; *************************************************************
- ; *** Scatter-Loading Description ***
- ; *************************************************************
- LR_VECTORS 0x00000000 0x00000400 { ; load region size_region
- .isr_vector +0 {
- startup*.o (RESET, +First)
- }
- }
- LR_IROM1 0x10000000 0x00030000 { ; load region size_region
- ER_IROM1 0x10000000 0x00030000 { ; load address = execution address
- *(InRoot$$Sections)
- .ANY (+RO)
- .ANY (+XO)
- }
- RW_IRAM1 0x10030000 0x00010000 { ; RW data
- .ANY (+RW +ZI)
- }
-
-
- ; ***** 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
- }
|