Created
July 5, 2017 18:44
-
-
Save uruskan/8472125c34a8a8519027f386554d2fbd to your computer and use it in GitHub Desktop.
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
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