Hi there guys again.
Im having problems with a program in MASM32 that I need to know if the number is greater than 10 or lower than 10 but for some reason i always get the number is greater than 10
Here's my code:
include \masm32\include\masm32rt.inc
.code
start:
mov esi, input("GIVE ME A NUMBER: ",62," ")
invoke atodw, esi
.if esi > 10
print "GREATER THAN 10! ", 13, 10
.elseif esi <10
print "LOWER THAN 10!", 13, 10
.elseif esi==10
print "THE NUMBER IS 10!", 13, 10
.endif
print "-----------------------------------------------------------", 13, 10
inkey "|END OF PROGRAM...|"
exit
end start
Thanks for your support guys!
You are using macro.
To see what happen,put your code inside
Quote
.LISTALL
.........code
.NOLIST
generate a listing, I don't know what do the input MACRO or function
Quote
invoke atodw, esi ;???????????????? wait an adress ex: offset truc ; truc db "1245",0
Thanks for your help..
But sorry im new to this... I dont get your answer....
:P
I FIXED THE PROBLEM!
I Was using esi instead of EAX registry
Thanks anyway ^_^!
Quote from: ToutEnMasm on October 16, 2014, 05:19:35 AMQuote
invoke atodw, esi ;???????????????? wait an adress ex: offset truc ; truc db "1245",0
ESI does contain an address (pointer to string).
Quote
a question to meditate:
give a fish or teach a sin
Quotegive a fish or teach a sin
not sure if that's a language barrier or a new saying :P
:biggrin:
It's not of my,it is google who had made the translate.
:biggrin:
QuoteGive a man a fish and you feed him for a day.
Teach a man to fish and you feed him for a lifetime.
QuoteDonnez à un homme un poisson et vous le nourrissez pour un jour.
Apprends-lui à pêcher et tu le nourriras pour la vie.
Give a fish or teach a sin.
QuoteDonner un poisson ou d'enseigner un péché.