surenyi
3 years ago
7 changed files with 54 additions and 16 deletions
@ -0,0 +1,24 @@ |
|||
MEMORY { |
|||
L2_BOOT : o = 00000000h l = 00000400h /* 1K */ |
|||
L2 : o = 00000400h l = 000FFC00h /* all SRAM */ |
|||
CE0 : o = 80000000h l = 00100000h /* external memory */ |
|||
} |
|||
|
|||
SECTIONS |
|||
{ |
|||
.vecs > L2_BOOT |
|||
.cinit > L2 |
|||
.text > L2 |
|||
.stack > L2 |
|||
.bss > L2 |
|||
.const > L2 |
|||
.data > L2 |
|||
.far > L2 |
|||
.switch > L2 |
|||
.sysmem > L2 |
|||
.tables > L2 |
|||
.cio > L2 |
|||
|
|||
.external > CE0 |
|||
} |
|||
|
Loading…
Reference in new issue