ifc

Starts a conditional assembly block, making assembly conditional on the equality of two strings.

  .ifc string1, string2

  
Parameters

string1

Any valid string.

string2

Any valid string.

Remarks

If string1and string2are equal, the assembler processes the statements of the block. (The equality comparison is case-sensitive.) If the strings are not equal, the assembler skips the statements of the block.

Each .ifc directive must have a matching .endif directive.