pop_esp.asm 166 B

123456789101112
  1. global _start
  2. section .data
  3. align 16
  4. %include "header.inc"
  5. mov esp, stack_top-16
  6. mov dword [esp], 55aaaa55h
  7. pop dword [esp-12]
  8. %include "footer.inc"