đHca.geocities.com/JLABELLE@rogers.com/nsasm/docs/r1701.htmlca.geocities.com/JLABELLE_rogers.com/nsasm/docs/r1701.htmldelayedxnŐJ˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙ȐƒOKtext/htmlPS´'˙˙˙˙b‰.HTue, 07 Dec 2004 00:49:36 GMT9Mozilla/4.5 (compatible; HTTrack 3.0x; Windows 98)en, *nŐJ.do

.do

Name

.do --  controls the .do - .enddo looping macro

Syntax

.do count
statements
...
.enddo

Description

These directives are used to delimit a block of statements that are repeatedly assembled. The number of times the block will be assembled is specified by the .do directive count value.

See also the .exit and .exitm directives.

Example

This .do - .enddo macro is equivalent to 50 nop instructions.

		.do 50
			nop
		.enddo