blank.asm 188 B

1234567891011
  1. [BITS 32]
  2. section .asm
  3. global _start
  4. _start:
  5. push 20
  6. push 30
  7. mov eax, 0
  8. int 0x80
  9. add esp, 8 ; push 20, push 30 - stack size 8; we need to restore the stack
  10. jmp $