1234567891011121314151617181920212223242526272829303132333435 |
- ROOT 0x00000000
- {
-
- BOOT 0x00000000 ALIGNALL 32
- {
- sys_BIM.o(SYS_Boot, +First)
- update_image_com.o(+RO)
- update_image_bim.o(+RO)
- }
- ;if u want to modify the base address of section, you may pay attention to update_image.h
- PRIMARY_START 0x00000EE0 FIXED EMPTY 0x20
- {
-
- }
-
- ;FLASH +0 ALIGNALL 32
- ;{
- ; *.o(+RO)
- ;}
-
- ;if u want to modify the base address of section, you may pay attention to update_image.h
- PEND_FOR_FLASH 0x00400000 EMPTY 0x20
- {
- }
-
- RAM 0x00400020 NOCOMPRESS
- {
- *(+RW,+ZI)
- }
-
- }
|