123456789101112131415161718192021 |
- // Таблица сомволов
- .file "21.s"
- .data
- str:
- .ascii "test\n"
- .text
- .globl main
- .type main, @function
- main:
- endbr64
- movq %rsp, %rbp
- movq $1, %rax
- movq $1, %rdi
- leaq str(%rip), %rsi
- movq $5, %rdx
- syscall
- movq %rbp, %rsp
- movl $0, %eax
- retq
|