Created
November 11, 2009 14:19
-
-
Save dannvix/231975 to your computer and use it in GitHub Desktop.
This file contains 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
INCLUDE Irvine32.inc | |
.data | |
text DWORD 100 DUP(0), 0 ;text[100], init to 0 | |
.code | |
main PROC | |
mov esi, 0 ;int i = 0 | |
L1: | |
call ReadInt ;scanf("%d", &test[i]) | |
mov text[esi], eax ;text[i] = eax | |
inc esi ;i++ | |
cmp eax, 0 | |
jz L2 ;if(text[i] == 0)then go to L2 | |
dec esi ;i-- | |
L2: | |
mov eax, text[esi] ;eax = text[i] | |
call WriteDec ;cout<<text[i] | |
dec esi ;i-- | |
cmp esi, 0 | |
jnz L2 ;if(i != 0)then go to L2 | |
main ENDP | |
END main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment