Created
December 11, 2012 00:58
-
-
Save takahisa/4254799 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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