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 336B

123456789101112131415
  1. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )
  2. .arch i386
  3. /****************************************************************************
  4. * Internal stack
  5. ****************************************************************************
  6. */
  7. .section ".stack", "aw", @nobits
  8. .align 8
  9. .globl _stack
  10. _stack:
  11. .space 4096
  12. .globl _estack
  13. _estack: