root/arch/x86/realmode/rm/stack.S

/* [<][>][^][v][top][bottom][index][help] */
   1 /* SPDX-License-Identifier: GPL-2.0 */
   2 /*
   3  * Common heap and stack allocations
   4  */
   5 
   6 #include <linux/linkage.h>
   7 
   8         .data
   9 GLOBAL(HEAP)
  10         .long   rm_heap
  11 GLOBAL(heap_end)
  12         .long   rm_stack
  13 
  14         .bss
  15         .balign 16
  16 GLOBAL(rm_heap)
  17         .space  2048
  18 GLOBAL(rm_stack)
  19         .space  2048
  20 GLOBAL(rm_stack_end)

/* [<][>][^][v][top][bottom][index][help] */