The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: etow on February 18, 2008, 01:21:51 PM

Title: Use MASM32 For Loops
Post by: etow on February 18, 2008, 01:21:51 PM
Hi

How do I use MASM32 For Loop?

FOR parameter[:REQ|:=default], <argument [,argument]...>
     statements
ENDM

I just don't know what to put the initial value and the stop value

For example,
    For i := 1 to 10
       statements
    end   

Here 1 is the initial value of the for loop and 10 is the stop value in the for loop

Please help thanks

Title: Re: Use MASM32 For Loops
Post by: hutch-- on February 18, 2008, 01:38:22 PM
Egan,

Use a .WHILE loop and either add or sub the reference value until you get the exit condition.
Title: Re: Use MASM32 For Loops
Post by: etow on February 18, 2008, 02:35:06 PM
Thanks Hutch
Title: Re: Use MASM32 For Loops
Post by: Tedd on February 18, 2008, 08:21:36 PM
It's not a 'code' for-loop, it's for macros to repeat things.
.while/.endw does produce looping code though :wink
Title: Re: Use MASM32 For Loops
Post by: hutch-- on February 18, 2008, 11:20:18 PM
Egan,

Have a look in either the older HLHELP.HLP file or the later CHM version for both .WHILE and .REPEAT loops as they are useful for emulating high level loop code methods. Note that they are off the pace with highly speed critical code but for most high level type constructions they are fine and allow you to test for multiple conditions in a simple and clear way.
Title: Re: Use MASM32 For Loops
Post by: newAsm on February 19, 2008, 02:18:03 AM
Hi,

Give my 2-cents worth to this. If I use .while/.endw

mov  ecx,10

.while ecx > 0                        .repeat

   do something                            do something
   dec  ecx                                   dec  ecx

.endw                                   .until ecx == 0

Hope this helps..newAsm
Title: Re: Use MASM32 For Loops
Post by: etow on February 19, 2008, 02:16:08 PM
Thanks everyone