-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
65ca611
commit fa7e094
Showing
8 changed files
with
63 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
.file "main.c" | ||
.text | ||
.section .rodata | ||
.LC0: | ||
.string "hello world!" | ||
.text | ||
.globl main | ||
.type main, @function | ||
main: | ||
.LFB6: | ||
.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 %edi, -4(%rbp) | ||
movq %rsi, -16(%rbp) | ||
leaq .LC0(%rip), %rdi | ||
call puts@PLT | ||
movl $0, %eax | ||
leave | ||
.cfi_def_cfa 7, 8 | ||
ret | ||
.cfi_endproc | ||
.LFE6: | ||
.size main, .-main | ||
.ident "GCC: (Ubuntu 10.5.0-1ubuntu1~20.04) 10.5.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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters