mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #45 from dinau/master
Fixed: The issue of interrupt vector remapping for GCC_ARM LPC1114pull/46/merge
commit
e8bd53f85d
|
@ -4,7 +4,7 @@
|
|||
MEMORY
|
||||
{
|
||||
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
|
||||
|
@ -40,6 +40,9 @@ SECTIONS
|
|||
.text :
|
||||
{
|
||||
KEEP(*(.isr_vector))
|
||||
*(.text.Reset_Handler)
|
||||
*(.text.SystemInit)
|
||||
. = 0x200;
|
||||
*(.text*)
|
||||
|
||||
KEEP(*(.init))
|
||||
|
|
Loading…
Reference in New Issue