Sfoglia il codice sorgente

alignment

Gives more free DTCM. 
This is the first iteration - after USB and other things are done we should look at this, again.
main
Frank 7 anni fa
parent
commit
28facbf3ee
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 6 aggiunte e 1 eliminazioni
  1. +6
    -1
      teensy4/imxrt.ld

+ 6
- 1
teensy4/imxrt.ld Vedi File

. = ALIGN(16); . = ALIGN(16);
} > ITCM AT> FLASH } > ITCM AT> FLASH


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


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

Loading…
Annulla
Salva