.file "print.asm" .text .global print print: movq $1, %rax movq $1, %rdi leaq str(%rip), %rsi movq $5, %rdx syscall ret