fork download
  1. global _start
  2.  
  3. section .data
  4.  
  5. filename: dB "/home/john/"
  6.  
  7. section .text
  8.  
  9. _start:
  10. ; your code goes here
  11. je exit
  12.  
  13. exit:
  14. mov eax, 01h ; exit()
  15. xor ebx, ebx ; errno
  16. int 80h
  17.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Standard output is empty