|
|
|
|
|
||
With .if .else and .endif mas provide conditional assembly. Syntax
is following:
.if expression ; come code .endifor: .if expression ; some code .else ; some code .endifIn both case we must have on mind that mas parse all on line bases, so after .else and .endif must be new-line character. It can be used for checking multiple including (like in C) ; names.inc .if .isndef __NAMES_INC .define __NAMES_INC ; all declarations .endif |
||
|
|