From a2b04c7daffd1eaed99231afae4c532b9c97e37f Mon Sep 17 00:00:00 2001 From: arighi Date: Thu, 20 May 2010 10:25:44 +0000 Subject: [PATCH] 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 --- bertos/cpu/cortex-m3/scripts/lm3s1968_rom.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = .; -- 2.25.1