.file "test_5.asm" .data data: .ascii "test\n" .text .global _start _start: // print "test\n" movq $1, %rax movq $1, %rdi movb $data, %rsi leaq data, %rsi leaq data(%rip), %rsi // относительная адресация movq %5, %rdx // exit movq $60, %rax movq $0, %rdi syscall