fork download
  1. section .data
  2. msg db "Hello world!", 0
  3. len equ $ - msg
  4. section .text
  5. global _start
  6. _start:
  7. mov eax, 4
  8. mov ebx, 1
  9. mov ecx, msg
  10. mov edx, len
  11. int 80h
  12.  
  13. mov eax, 1
  14. mov ebx, 0
  15. int 80h
Success #stdin #stdout 0s 156KB
stdin
Standard input is empty
stdout
Hello world!