Skip to content

Instantly share code, notes, and snippets.

@uruskan
Created July 5, 2017 18:44
Show Gist options
  • Save uruskan/8472125c34a8a8519027f386554d2fbd to your computer and use it in GitHub Desktop.
Save uruskan/8472125c34a8a8519027f386554d2fbd to your computer and use it in GitHub Desktop.
section .data
msg db "hello, world!"
section .text
global _start
_start:
mov rax, 1
mov rdi, 1
mov rsi, msg
mov rdx, 13
syscall
mov rax, 60
mov rdi, 0
syscall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment