Skip to content

Commit

Permalink
Merge pull request ChibiOS#336 from KarlK90/fix/rp2040-vector-table-s…
Browse files Browse the repository at this point in the history
…ymbols-linking

[RP2040] Add `vectors_base` and `end` symbol to RP2040 linker script
  • Loading branch information
fpoussin committed Sep 22, 2022
2 parents 41253c2 + 4080031 commit b517877
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ SECTIONS
{
.vectors : ALIGN(256)
{
__textvectors_base__ = LOADADDR(.vectors);
__vectors_base__ = .;
KEEP(*(.vectors))
__vectors_end__ = .;
} > VECTORS_FLASH AT > VECTORS_FLASH_LMA

.xtors : ALIGN(4)
Expand Down

0 comments on commit b517877

Please sign in to comment.