Merge pull request #45 from dinau/master

Fixed: The issue of interrupt vector remapping for GCC_ARM LPC1114
pull/46/merge
Bogdan Marinescu 2013-08-29 07:28:17 -07:00
commit e8bd53f85d
1 changed files with 4 additions and 1 deletions

View File

@ -4,7 +4,7 @@
MEMORY MEMORY
{ {
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 32K FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 32K
RAM (rwx) : ORIGIN = 0x10000000, LENGTH = 2K RAM (rwx) : ORIGIN = 0x100000C0, LENGTH = 0x0F40
} }
/* Linker script to place sections and symbol values. Should be used together /* Linker script to place sections and symbol values. Should be used together
@ -40,6 +40,9 @@ SECTIONS
.text : .text :
{ {
KEEP(*(.isr_vector)) KEEP(*(.isr_vector))
*(.text.Reset_Handler)
*(.text.SystemInit)
. = 0x200;
*(.text*) *(.text*)
KEEP(*(.init)) KEEP(*(.init))