fork download
  1. section .data
  2. msg1 db "Hello Students",10
  3. len1 equ $-msg1
  4. section .text
  5. global _start
  6.  
  7. _start:
  8. mov rax ,01H;
  9. mov rdi ,01H;
  10. mov rsi ,msg1;
  11. mov rdx ,len1;
  12. syscall
  13. mov rax ,60;
  14. mov rdi ,00;
  15. syscall
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
Hello Students