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