blob: 867ae87adfae8d22cff122fc8163ffc7461d2cc9 [file] [log] [blame]
Jarkko Sakkinen8e029fc2012-05-08 21:22:40 +03001/*
2 * Common heap and stack allocations
3 */
4
5#include <linux/linkage.h>
6
7 .data
8GLOBAL(HEAP)
9 .long rm_heap
10GLOBAL(heap_end)
11 .long rm_stack
12
13 .bss
14 .balign 16
15GLOBAL(rm_heap)
16 .space 2048
17GLOBAL(rm_stack)
18 .space 2048
19GLOBAL(rm_stack_end)