From: arighi Date: Thu, 20 May 2010 10:25:44 +0000 (+0000) Subject: lm3s1968: align the interrupt vector table to 1K boundary. X-Git-Tag: 2.5.0~183 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=a2b04c7daffd1eaed99231afae4c532b9c97e37f;p=bertos.git lm3s1968: align the interrupt vector table to 1K boundary. Moreover, do not waste space in RAM and reserve for the vtable an amount of space proportional to the total number of interrupts defined on the board. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3734 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/cpu/cortex-m3/scripts/lm3s1968_rom.ld b/bertos/cpu/cortex-m3/scripts/lm3s1968_rom.ld index e0294b46..b4ed93a3 100644 --- a/bertos/cpu/cortex-m3/scripts/lm3s1968_rom.ld +++ b/bertos/cpu/cortex-m3/scripts/lm3s1968_rom.ld @@ -80,9 +80,9 @@ SECTIONS .data : AT (__text_end) { + . = ALIGN (0x400); PROVIDE (__data_start = .); *(vtable) - . = ALIGN (0x400); *(.data .data.*) . = ALIGN (4); _edata = .;