X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Farm%2Fscripts%2Farm7tdmi_rom.ld;h=8c60ed9fc3de18eda393b6752f69e1b66107e873;hb=66289a0e7fa93342bc3d8621fa20c5a542807e1e;hp=7875df40758ae70735dac5d5a09529839508cd18;hpb=f8d6424568270780b2aae021d7fd114689d184a1;p=bertos.git diff --git a/bertos/cpu/arm/scripts/arm7tdmi_rom.ld b/bertos/cpu/arm/scripts/arm7tdmi_rom.ld index 7875df40..8c60ed9f 100644 --- a/bertos/cpu/arm/scripts/arm7tdmi_rom.ld +++ b/bertos/cpu/arm/scripts/arm7tdmi_rom.ld @@ -57,6 +57,8 @@ SECTIONS { KEEP(*(.vectors)); . = ALIGN (4); + KEEP(*(.exceptions)); + . = ALIGN (4); *(.init); . = ALIGN (4); *(.rodata .rodata.*); @@ -80,6 +82,9 @@ SECTIONS .data : AT (_etext) { PROVIDE (__data_start = .); + . = ALIGN (4); + *(.ramfunc) + . = ALIGN (4); *(.data .data.*) . = ALIGN (4); _edata = .;