Guest User

Untitled

a guest
Mar 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. /* x86-64 Linux only! */
  2.  
  3. #define __NR_exit_group 231
  4.  
  5. .text
  6.  
  7. .global foobar
  8. foobar:
  9. movq $__NR_exit_group, %rax
  10. movq $42, %rdi
  11. syscall
  12.  
  13. /* Unreachable */
  14. hlt
Add Comment
Please, Sign In to add comment