blob: 8d4cb64799eaeaacc766b19fff8508b59a622d02 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Common heap and stack allocations
4 */
5
6#include <linux/linkage.h>
7
8 .data
9GLOBAL(HEAP)
10 .long rm_heap
11GLOBAL(heap_end)
12 .long rm_stack
13
14 .bss
15 .balign 16
16GLOBAL(rm_heap)
17 .space 2048
18GLOBAL(rm_stack)
19 .space 2048
20GLOBAL(rm_stack_end)