Created
June 11, 2021 19:13
-
-
Save Leask/e64588dd01e0fa8152baf2a7b2dc10d0 to your computer and use it in GitHub Desktop.
fuckCcp.s
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
.text | |
msg: .ascii "Fuck CCP!\n" | |
.global _start | |
_start: | |
mov $1, %rax | |
mov $1, %rdi | |
mov $msg, %rsi | |
mov $13, %rdx | |
syscall | |
mov $60, %rax | |
xor %rdi, %rdi | |
syscall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment