Skip to content

Instantly share code, notes, and snippets.

@dannvix
Created November 11, 2009 14:19
Show Gist options
  • Save dannvix/231975 to your computer and use it in GitHub Desktop.
Save dannvix/231975 to your computer and use it in GitHub Desktop.
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