.if absolute expression
.if
marks the beginning of a section of code which is only
considered part of the source program being assembled if the argument
(which must be an absolute expression) is non-zero. The end of
the conditional section of code must be marked by .endif
(see section .endif
); optionally, you may include code for the
alternative condition, flagged by .else
(see section .else
).
The following variants of .if
are also supported:
.ifdef symbol
.ifndef symbol
.ifnotdef symbol
Go to the first, previous, next, last section, table of contents.