Skip to content

Instantly share code, notes, and snippets.

@cieplak
Created November 28, 2018 21:02
Show Gist options
  • Save cieplak/09e8b978eb9f4411dd583b3173b40988 to your computer and use it in GitHub Desktop.
Save cieplak/09e8b978eb9f4411dd583b3173b40988 to your computer and use it in GitHub Desktop.
#!/bin/sh
nasm -f elf64 test.s && ld -s -o test test.o && ./test
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