fork download
  1. section .data
  2. msg db 'Hello, NASM Students!', 10
  3. len equ $ - msg
  4.  
  5. section .text
  6. global _start3
  7.  
  8. _start3:
  9. mov eax, 4 ; syscall: write
  10. mov ebx, 1 ; stdout
  11. mov ecx, msg ; message location
  12. mov edx, len ; message length
  13. int 0x80
  14.  
  15. mov eax, 1 ; syscall: exit
  16. xor ebx, ebx
  17. int 0x80
  18.  
Success #stdin #stdout 0s 5328KB
stdin
Standard input is empty
stdout
Hello, NASM Students!