mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #209 from toyowata/master
[LPC1549] Fixed initial value of stack pointerpull/210/head
commit
9319e1bf30
|
|
@ -31,8 +31,9 @@
|
||||||
Stack_Size EQU 0x00000200
|
Stack_Size EQU 0x00000200
|
||||||
|
|
||||||
AREA STACK, NOINIT, READWRITE, ALIGN=3
|
AREA STACK, NOINIT, READWRITE, ALIGN=3
|
||||||
Stack_Mem SPACE Stack_Size
|
EXPORT __initial_sp
|
||||||
__initial_sp
|
|
||||||
|
__initial_sp EQU 0x02009000 ; Top of RAM from LPC1549
|
||||||
|
|
||||||
|
|
||||||
; <h> Heap Configuration
|
; <h> Heap Configuration
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue