.file "test_11.as" .text .data str: .ascii "test\n" .text .globl main main: endbr64 movq %rsp, %rbp movq $0, %rax movq $1, %rdi leaq str(%rip), %rsi movq $5, %rdx callq write movq %rbp, %rsp movl $0, %eax ret