fork download
  1. global _start
  2.  
  3. section .data
  4.  
  5. msg db "Hello, World!"
  6. msgLen equ $ -msg
  7.  
  8. section .text
  9.  
  10. _start:
  11. mov eax, 4 ; write()
  12. mov ebx, 1 ; fd (stdout)
  13. mov ecx, msg ; buf
  14. mov edx, msgLen ; count
  15. int 80h
  16.  
  17. exit:
  18. mov eax, 1 ; exit()
  19. xor ebx, ebx ; errno (0)
  20. int 80h
  21.  
Success #stdin #stdout 0.01s 5512KB
stdin
Standard input is empty
stdout
Hello, World!