stack.S 240 B

12345678910111213141516171819
  1. /*
  2. * Common heap and stack allocations
  3. */
  4. #include <linux/linkage.h>
  5. .data
  6. GLOBAL(HEAP)
  7. .long rm_heap
  8. GLOBAL(heap_end)
  9. .long rm_stack
  10. .bss
  11. .balign 16
  12. GLOBAL(rm_heap)
  13. .space 2048
  14. GLOBAL(rm_stack)
  15. .space 2048
  16. GLOBAL(rm_stack_end)