Поделиться через


.IF

Generates code that tests condition1 (for example, AX > 7) and executes the statements if that condition is true.

.IF condition1 
      statements
   [[.ELSEIF condition2 
            statements]]
   [[.ELSE
            statements]]
      .ENDIF

Заметки

If a .ELSE follows, its statements are executed if the original condition was false. Note that the conditions are evaluated at run time.

См. также

Основные понятия

Directives Reference