fork download
  1. global _start
  2.  
  3. section .data
  4. text db "Awesome!!!"
  5. text_length equ $-text
  6.  
  7. section .text
  8.  
  9. _start:
  10. mov ecx, text
  11. mov edx, text_length
  12. call write
  13. mov eax, 01h ; exit()
  14. xor ebx, ebx ; errno
  15. int 80h
  16.  
  17. write:
  18. mov eax, 04h ; write()
  19. mov ebx, 01h ; stdout
  20. int 80h
  21. ret
  22.  
  23.  
  24.  
Success #stdin #stdout 0.02s 144KB
stdin
Standard input is empty
stdout
Awesome!!!