Created
November 28, 2018 21:02
-
-
Save cieplak/09e8b978eb9f4411dd583b3173b40988 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/sh | |
nasm -f elf64 test.s && ld -s -o test test.o && ./test |
This file contains 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 | |
message: | |
db `test\n`, 0 | |
section .text | |
global _start | |
_start: | |
mov rbx, 1 | |
jmp _app | |
_app: | |
mov rax, 4 | |
mov rdi, 1 | |
mov rsi, message | |
mov rdx, 5 | |
syscall | |
dec rbx | |
cmp rbx, 0 | |
jne _app | |
jmp _exit | |
_exit: | |
mov rax, 1 | |
xor rdi, rdi | |
syscall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment