print.asm 157 B

1234567891011
  1. .file "print.asm"
  2. .text
  3. .global print
  4. print:
  5. movq $1, %rax
  6. movq $1, %rdi
  7. leaq str(%rip), %rsi
  8. movq $5, %rdx
  9. syscall
  10. ret