| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- .file "libpas2100.c"
- .text
- .globl write_char
- .type write_char, @function
- write_char:
- .LFB0:
- .cfi_startproc
- pushq %rbp
- .cfi_def_cfa_offset 16
- .cfi_offset 6, -16
- movq %rsp, %rbp
- .cfi_def_cfa_register 6
- subq $16, %rsp
- movl %edi, -4(%rbp)
- movl -4(%rbp), %eax
- movl %eax, %edi
- call putchar
- nop
- leave
- .cfi_def_cfa 7, 8
- ret
- .cfi_endproc
- .LFE0:
- .size write_char, .-write_char
- .section .rodata
- .LC0:
- .string "%d"
- .text
- .globl write_int
- .type write_int, @function
- write_int:
- .LFB1:
- .cfi_startproc
- pushq %rbp
- .cfi_def_cfa_offset 16
- .cfi_offset 6, -16
- movq %rsp, %rbp
- .cfi_def_cfa_register 6
- subq $16, %rsp
- movl %edi, -4(%rbp)
- movl -4(%rbp), %eax
- movl %eax, %esi
- movl $.LC0, %edi
- movl $0, %eax
- call printf
- nop
- leave
- .cfi_def_cfa 7, 8
- ret
- .cfi_endproc
- .LFE1:
- .size write_int, .-write_int
- .section .rodata
- .LC1:
- .string "%s"
- .text
- .globl write_string
- .type write_string, @function
- write_string:
- .LFB2:
- .cfi_startproc
- pushq %rbp
- .cfi_def_cfa_offset 16
- .cfi_offset 6, -16
- movq %rsp, %rbp
- .cfi_def_cfa_register 6
- subq $16, %rsp
- movq %rdi, -8(%rbp)
- movq -8(%rbp), %rax
- movq %rax, %rsi
- movl $.LC1, %edi
- movl $0, %eax
- call printf
- nop
- leave
- .cfi_def_cfa 7, 8
- ret
- .cfi_endproc
- .LFE2:
- .size write_string, .-write_string
- .ident "GCC: (GNU) 5.2.0"
- .section .note.GNU-stack,"",@progbits
|