mirror of https://github.com/ARMmbed/mbed-os.git
Fixed the startup_LPC11xx.s files in ARM Micro and ARM STD - they had wrong memory size;
to this: __initial_sp EQU 0x10001800 ; Top of RAM from LPC11U from this: __initial_sp EQU 0x10002000 ; Top of RAM from LPC11Upull/620/merge
parent
c66f1b1955
commit
f46cb59b8e
|
@ -25,7 +25,7 @@ Stack_Size EQU 0x00000400
|
|||
EXPORT __initial_sp
|
||||
|
||||
Stack_Mem SPACE Stack_Size
|
||||
__initial_sp EQU 0x10002000 ; Top of RAM from LPC11U
|
||||
__initial_sp EQU 0x10001800 ; Top of RAM from LPC11U
|
||||
|
||||
|
||||
Heap_Size EQU 0x00000000
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
; *
|
||||
; *****************************************************************************/
|
||||
|
||||
__initial_sp EQU 0x10002000 ; Top of RAM from LPC11U
|
||||
__initial_sp EQU 0x10001800 ; Top of RAM from LPC11U
|
||||
|
||||
PRESERVE8
|
||||
THUMB
|
||||
|
|
Loading…
Reference in New Issue