-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.s
62 lines (62 loc) · 979 Bytes
/
main.s
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
.file "main.c"
.text
.section .rodata
.LC0:
.string "test_string"
.text
.globl main
.type main, @function
main:
.LFB0:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
subq $16, %rsp
movl $0, %eax
call clear_screen@PLT
leaq .LC0(%rip), %rax
movq %rax, -8(%rbp)
movq -8(%rbp), %rax
addq $1, %rax
movzbl (%rax), %eax
movsbl %al, %eax
movl %eax, %edi
call print_char@PLT
movq -8(%rbp), %rax
addq $2, %rax
movzbl (%rax), %eax
movsbl %al, %eax
movl %eax, %edi
call print_char@PLT
movq -8(%rbp), %rax
movq %rax, %rdi
call print_string@PLT
nop
leave
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE0:
.size main, .-main
.ident "GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0"
.section .note.GNU-stack,"",@progbits
.section .note.gnu.property,"a"
.align 8
.long 1f - 0f
.long 4f - 1f
.long 5
0:
.string "GNU"
1:
.align 8
.long 0xc0000002
.long 3f - 2f
2:
.long 0x3
3:
.align 8
4: