Fixed uARM build

Added EXPORT directive for stack/heap.
pull/17/head
Toyomasa Watarai 2013-07-22 10:29:20 +09:00
parent 8bd3171943
commit b4de4503a8
1 changed files with 4 additions and 1 deletions

View File

@ -31,8 +31,9 @@
Stack_Size EQU 0x00000200
AREA STACK, NOINIT, READWRITE, ALIGN=3
EXPORT __initial_sp
Stack_Mem SPACE Stack_Size
__initial_sp
__initial_sp EQU 0x10001000 ; Top of RAM from LPC1114
; <h> Heap Configuration
@ -42,6 +43,8 @@ __initial_sp
Heap_Size EQU 0x00000000
AREA HEAP, NOINIT, READWRITE, ALIGN=3
EXPORT __heap_base
EXPORT __heap_limit
__heap_base
Heap_Mem SPACE Heap_Size
__heap_limit