fork(1) download
  1. global _start
  2.  
  3. section .data
  4.  
  5. section .text
  6.  
  7. _start:
  8. mov rcx,0
  9. mov rdx,200
  10.  
  11. soma:
  12. add rdx,rcx
  13. cmp rdx,360
  14. jnz conta
  15. jmp exit
  16.  
  17. conta:
  18. inc rcx
  19. cmp rcx,200
  20. jnz soma
  21. jmp exit
  22.  
  23. mov rax, 60 ; exit()
  24. xor rdi, rdi ; errno
  25. syscall
  26.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
Standard output is empty