Skip to content

Instantly share code, notes, and snippets.

@warabanshi
Created November 23, 2012 05:09
Show Gist options
  • Save warabanshi/4134093 to your computer and use it in GitHub Desktop.
Save warabanshi/4134093 to your computer and use it in GitHub Desktop.
ELF sample2
BITS 64
EXTERN _exit
GLOBAL _start
SECTION .text
_start:
mov edi, 42
call _exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment