The MASM Forum

General => The Campus => Topic started by: ayao on March 27, 2014, 11:03:16 PM

Title: I Got Question About
Post by: ayao on March 27, 2014, 11:03:16 PM

Hello i got another question. i got problem with displaying using edi. it only show weird symbol around it

.data?

num1 dd ?
num2 dd ?



.code

start:

     
main proc


print chr$("                    ======================================"),0Ah
mov num1,sval(input("                    Enter a number:"))
mov num2,sval(input("                    Enter a number:"))



mov edi, offset  num1

mov ebx, num1
mov eax, num2
CMP ebx, eax


mov ebx,eax
mov edi, offset num2



print "The Largest Number is:", 13, 10
print edi,13,10

                   
inkey
exit

main endp
end start
Title: Re: I Got Question About
Post by: jj2007 on March 28, 2014, 12:18:27 AM
Read the documentation of sval. Hint: It's in the help folder.
Title: Re: I Got Question About
Post by: ayao on March 28, 2014, 05:08:16 AM
which files has the sval i been looking for it all i have in my help folder is fpuhelp.chm opcodes.chm
Title: Re: I Got Question About
Post by: dedndave on March 28, 2014, 05:32:14 AM
hlhelp.chm, Macro Catagories, String Macros
Title: Re: I Got Question About
Post by: jj2007 on March 28, 2014, 05:35:33 AM
Quote from: ayao on March 28, 2014, 05:08:16 AMall i have in my help folder is fpuhelp.chm opcodes.chm

Yeah, I have the same habit: Whenever I install a software package, the first action is to throw away the help files. They are useless anyway.
Title: Re: I Got Question About
Post by: raymond on March 28, 2014, 10:34:24 AM
Glad to hear that my fpulib helpfile is useless. :( :eusa_clap: :eusa_clap: :biggrin:
Title: Re: I Got Question About
Post by: dedndave on March 28, 2014, 10:48:12 AM
not at all Ray
i have a quick reference shortcut for it on my desktop   :t
Title: Re: I Got Question About
Post by: jj2007 on March 28, 2014, 10:53:18 AM
OMG I forgot the irony tags :dazzled:
Title: Re: I Got Question About
Post by: ayao on March 28, 2014, 05:03:33 PM
thanks alot  i did not have this on my help folder hlhelp.chm, Macro Catagories, String Macros
but trial and error i fix my code thanks. was wondering how to make program count to 10 - 20 ?
Title: Re: I Got Question About
Post by: Gunther on March 28, 2014, 07:48:45 PM
Quote from: ayao on March 28, 2014, 05:03:33 PM
thanks alot  i did not have this on my help folder hlhelp.chm, Macro Catagories, String Macros
but trial and error i fix my code thanks. was wondering how to make program count to 10 - 20 ?

With a sensible installtion, all necessary help files are there - if not deleted. That's the point.

Gunther
Title: Re: I Got Question About
Post by: dedndave on March 29, 2014, 03:53:09 AM
if you are missing files, i suggest re-installing the package

count from 10 to 20
there are many ways to do this
        mov     esi,10

loop00:

;do loop stuff

        inc     esi
        cmp     esi,20
        jbe     loop00
Title: Re: I Got Question About
Post by: ayao on March 29, 2014, 04:33:37 PM
mov     esi,10

loop00:

;do loop stuff

        inc     esi
        cmp     esi,20
        jbe     loop00


thank alot but i was wondering when i tried and test the code how do i display 10 to 20  it goes directly to number 20
Title: Re: I Got Question About
Post by: dedndave on March 29, 2014, 05:14:03 PM
        include     \masm32\include\masm32rt.inc

        .CODE

start:
        mov     esi,10

loop00:

        print   str$(esi),32

        inc     esi
        cmp     esi,20
        jbe     loop00

        print   chr$(13,10)
        inkey
        exit

        END     start
Title: Re: I Got Question About
Post by: Gunther on March 30, 2014, 07:42:55 PM
Hi ayao,

Quote from: ayao on March 29, 2014, 04:33:37 PM
thank alot but i was wondering when i tried and test the code how do i display 10 to 20  it goes directly to number 20

it's a simple loop. Are you familiar with that?

Gunther