Last active
December 24, 2015 12:29
-
-
Save DavidMah/6798445 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
.section .text | |
.globl _start | |
_start: | |
movq %rsp, %rbp | |
# Our team name starts here | |
movb $45, %al | |
movb $0, %bl | |
int $0x80 | |
movq %rax, %rbx | |
addb $0x10, %bl | |
movq $45, %rax | |
int $0x80 | |
movq %rax, %rcx | |
movq $4, %rax | |
movq $0x706f6f70, (%rcx) | |
movq $1, %rbx | |
movb $16, %dl | |
int $0x80 | |
# Our team name ends here | |
movb $0, %bl | |
movb $1, %al | |
int $0x80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nerd!