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