.file "test_10.asm" .data .global str str: .ascii "test\n" .text .global _start _start: movq %rsp, %rbp call print movq %rbp, %rsp // exit movq $60, %rax movq $0, %rdi syscall