Browse Source

Merge pull request #321 from FrankBoesing/patch-7

alignment
main
Paul Stoffregen 5 years ago
parent
commit
aa3e87266d
No account linked to committer's email address
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      teensy4/imxrt.ld

+ 6
- 1
teensy4/imxrt.ld View File

@@ -37,13 +37,18 @@ SECTIONS
. = ALIGN(16);
} > ITCM AT> FLASH

.vectorsRAM (NOLOAD) : {
. = ALIGN(4);
*(.vectorsRAM*)
} > DTCM
.data : {
*(.rodata*)
*(.data*)
. = ALIGN(16);
} > DTCM AT> FLASH

.bss : {
.bss ALIGN(4) : {
*(.bss*)
*(COMMON)
. = ALIGN(32);

Loading…
Cancel
Save