Hi there guys!
AS you know I'm still new to MASM32 but I think its great than work with TASM that you need to control all the memory and all that
But now I'm having problems taking the input of the user of the console. For example i want that the console add 5 and print it
For example if i put 5 the result will be: 10 and if put 10 the result will be 15
How can i do this guys?
include \masm32\include\masm32rt.inc
.code
start:
mov eax, 5
print str$(eax), 9
mov eax, 10
print str$(eax), 9
mov eax,15
print str$(eax), 9
end start
Thanks a lot
Hi Rodolfo,
No time to code something, but check \Masm32\Help\hlhelp.chm, Console Mode Macros
this will get you started
what you might want to do for numbers is...
write a PROC that:
1) displays a prompt by calling awStdOut
2) accepts a string from console input by calling awConIn256
3) validates the string as numeric in range
...a) displays an error message if non-numeric or out of range, then loop back to step 2
...b) returns value in EAX if valid numeric
Hi rodolfo,
we won't do your homework (http://masm32.com/board/index.php?topic=4.0). Please check rule #9.
Gunther