aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/realmode/rm/stack.S
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/realmode/rm/stack.S')
-rw-r--r--arch/x86/realmode/rm/stack.S19
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/x86/realmode/rm/stack.S b/arch/x86/realmode/rm/stack.S
new file mode 100644
index 000000000000..867ae87adfae
--- /dev/null
+++ b/arch/x86/realmode/rm/stack.S
@@ -0,0 +1,19 @@
1/*
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)