Skip to content

Instantly share code, notes, and snippets.

@warabanshi
Created March 7, 2013 15:50
Show Gist options
  • Select an option

  • Save warabanshi/5109000 to your computer and use it in GitHub Desktop.

Select an option

Save warabanshi/5109000 to your computer and use it in GitHub Desktop.
BITS 64
EXTERN putchar
EXTERN exit
GLOBAL _start
SECTION .text
_start:
mov edi, 'T'
call putchar
mov edi, 42
call exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment