fork download
  1. section .data
  2.  
  3. section .bss
  4.  
  5. section .text
  6. global _start
  7.  
  8. _start:
  9.  
  10. mov eax, 8
  11.  
  12. add eax, 2
  13.  
  14. mov ebx, 5
  15.  
  16. add eax, ebx
  17.  
  18.  
  19. mov eax, 1
  20. xor ebx, ebx
  21. int 0x80
  22.  
  23.  
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
Standard output is empty