You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stack.S 422B

123456789101112131415161718192021
  1. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )
  2. .arch i386
  3. #ifdef __x86_64__
  4. #define STACK_SIZE 8192
  5. #else
  6. #define STACK_SIZE 4096
  7. #endif
  8. /****************************************************************************
  9. * Internal stack
  10. ****************************************************************************
  11. */
  12. .section ".stack", "aw", @nobits
  13. .align 8
  14. .globl _stack
  15. _stack:
  16. .space STACK_SIZE
  17. .globl _estack
  18. _estack: