Created
March 6, 2010 22:10
-
-
Save abuiles/323975 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
segment .data | |
numero1: dd 1X | |
numero2: dd 2 | |
numero3: dd 3 | |
numero4: dd 4 | |
numero5: dd 5 | |
segment .text | |
global main | |
main: | |
mov eax,[numero1] | |
mov eax,[numero2] | |
mov eax,[numero3] | |
mov eax,[numero4] | |
mov eax,[numero5] | |
mov eax,1 | |
mov ebx,0 | |
int 0x80 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment