Skip to content

Instantly share code, notes, and snippets.

@nkaretnikov
Last active August 29, 2015 14:26
Show Gist options
  • Save nkaretnikov/ebeb9d9b8a7e11a9be31 to your computer and use it in GitHub Desktop.
Save nkaretnikov/ebeb9d9b8a7e11a9be31 to your computer and use it in GitHub Desktop.
hello world 42
.data
hello:
.asciz "hello world %d\n"
.text
.globl main
main:
subq $8, %rsp
movb $0, %al
movq $42, %rsi
leaq hello(%rip), %rdi
call printf
movq $0, %rdi
call exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment