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

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