LR_IROM1 0x08000000 0x00200000 { ; Load region: starting at 0x08000000, size 2MB
ER_IROM1 0x08000000 0x00200000 { ; Execution region: starting at 0x08000000, size 2MB
*.o (RESET, +First) ; Place the reset handler at the beginning
*(InRoot$$Sections) ; Place all sections
.ANY (+RO) ; Place any read-only sections
}
RW_IRAM1 0x20000000 0x00020000 { ; Execution region: starting at 0x20000000, size 128KB
.ANY (+RW +ZI) ; Place any read-write and zero-initialized sections
}
}
|