Advertisement
Guest User

xormor 2016 from a tutorial, added: "0xa", rdx,14" from 13

a guest
Dec 4th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. section .data
  2.     msg db      "hello, world!",0xa
  3.  
  4. section .text
  5.     global _start
  6. _start:
  7.     mov     rax, 1
  8.     mov     rdi, 1
  9.     mov     rsi, msg
  10.     mov     rdx, 14
  11.     syscall
  12.     mov    rax, 60
  13.     mov    rdi, 0
  14.     syscall
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement