Skip to content

Instantly share code, notes, and snippets.

@Leask
Created June 11, 2021 19:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Leask/e64588dd01e0fa8152baf2a7b2dc10d0 to your computer and use it in GitHub Desktop.
Save Leask/e64588dd01e0fa8152baf2a7b2dc10d0 to your computer and use it in GitHub Desktop.
fuckCcp.s
.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