pop_esp2.asm 160 B

123456789101112
  1. global _start
  2. section .data
  3. align 16
  4. %include "header.inc"
  5. ; pop esp encoded using 8F
  6. mov esp, stack_top-16
  7. db 8Fh, 0C4h
  8. %include "footer.inc"