xref: /openbmc/linux/arch/x86/realmode/rm/stack.S (revision f79e4d5f)
1/* 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)
21