123456789101112131415161718192021 |
- .file "main.c"
- .text
- .globl main
- .type main, @function
- main:
- pushq %rbp
- movq %rsp, %rbp
- subq $16, %rsp
- movb $65, -4(%rbp)
- movb $66, -3(%rbp)
- movb $67, -2(%rbp)
- movb $0, -1(%rbp)
- leaq -4(%rbp), %rax
- movq %rax, %rdi
- call puts@PLT
- movl $0, %eax
- leave
- ret
- .size main, .-main
- .ident "GCC: (Debian 12.2.0-14) 12.2.0"
- .section .note.GNU-stack,"",@progbits
|