Skip to content

Instantly share code, notes, and snippets.

@takahisa
Created December 11, 2012 00:58
Show Gist options
  • Save takahisa/4254799 to your computer and use it in GitHub Desktop.
Save takahisa/4254799 to your computer and use it in GitHub Desktop.
.intel_syntax noprefix
.text
.align 4
.global main
main:
mov eax, 1
mov ebx, 2
mov ecx, 3
mov edx, 4
add esi, eax
add esi, ebx
add esi, ecx
add esi, edx
call stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment